体验Medex无缝护理交付 - 首次约会时折扣10% -结帐时使用“ Trimedex”优惠券代码

地点
0 - ฿0.00

购物车中没有产品。

地点
0 - ฿0.00

购物车中没有产品。

0 - ฿0.00

购物车中没有产品。

1
搜索
2
筛选
3
选择测试
4
查看购物车
5
查看

查找并订购实验室检测

血液 尿液 激素 癌症 心脏 快速检测结果 基础体检 全套

按类别筛选

可用的测试

向下滚动查看更多测试
0
'); printWindow.document.write(''); printWindow.document.close(); printWindow.addEventListener('load', function() { setTimeout(function() { printWindow.print(); setTimeout(function() { printWindow.close(); }, 500); }, 500); }); }); }; LabDOSApp.copyCartAsBulletList = function() { if (!this.cart || this.cart.length === 0) { this.showAchievement('购物车为空', '请在复制之前将一些测试添加到您的购物车。'); return; } const bulletList = this.formatCartAsBulletList(); const textarea = document.createElement('textarea'); textarea.value = bulletList; textarea.setAttribute('readonly', ''); textarea.style.position = 'absolute'; textarea.style.left = '-9999px'; document.body.appendChild(textarea); textarea.select(); document.execCommand('copy'); document.body.removeChild(textarea); this.showAchievement('已复制到剪贴板!', '购物车项目已以项目符号列表格式复制。'); }; LabDOSApp.printCart = function() { if (!this.cart || this.cart.length === 0) { this.showAchievement('购物车为空', '请在打印前向购物车添加一些测试。'); return; } this.showPrintPopup(); }; LabDOSApp.addCartIcons = function() { if ($('#cart-action-icons').length > 0) { return; } const isMobile = window.innerWidth < 768; const iconContainer = `
结账
`; $('#subtotal').parent().after(iconContainer); const self = this; // 绑定打印事件(CSS 在移动设备上会隐藏) $('#print-cart-btn').on('click', function() { self.printCart.call(self); }); $('#copy-cart-btn').on('click', function() { self.copyCartAsBulletList.call(self); }); }; LabDOSApp.originalRenderCart = LabDOSApp.renderCart; LabDOSApp.renderCart = function(highlightItemName = null) { this.originalRenderCart.call(this, highlightItemName); this.addCartIcons.call(this); }; $(document).ready(function() { setTimeout(function() { if (LabDOSApp && typeof LabDOSApp.addCartIcons === 'function') { LabDOSApp.addCartIcons.call(LabDOSApp); } }, 1000); // Fresh: Toggle labdos-inview class and handle sticky search box (function(){ var rootEl = document.getElementById('lab-dos'); if (!rootEl) return; function setInView(inView){ document.body.classList.toggle('labdos-inview', !!inView); console.log('labdos-inview:', inView); // Debug } function recompute() { var rect = rootEl.getBoundingClientRect(); var vpH = window.innerHeight || document.documentElement.clientHeight; // Consider in view if large part of #lab-dos is visible var inView = rect.bottom > vpH * 0.2 && rect.top < vpH * 0.8; setInView(inView); } if ('IntersectionObserver' in window) { try { var io = new IntersectionObserver(function(entries){ entries.forEach(function(entry){ setInView(entry.isIntersecting); }); }, { threshold: [0, 0.01], rootMargin: '0px 0px -30% 0px' }); io.observe(rootEl); } catch(e) { /* 回退到滚动检查 */ } } $(window).on('scroll.labdos resize.labdos orientationchange.labdos', recompute); setTimeout(recompute, 100); })(); // 使用激进的方法在移动设备上强制启用粘性搜索框 (function(){ console.log('初始化粘性搜索框' box'); // 调试 var $searchBox = $('#lab-dos .search-box'); var $searchWrapper = $('#lab-dos .search-wrapper'); console.log('找到元素:', $searchBox.length, $searchWrapper.length); // 调试 if (!$searchBox.length || !$searchWrapper.length) return; var stickyClone = null; var isStuck = false; function handleSticky() { var isMobile = window.innerWidth <= 991; if (!isMobile) { if (isStuck) unstickSearchBox(); return; } if (!document.body.classList.contains('labdos-inview')) { if (isStuck) unstickSearchBox(); return; } var searchRect = $searchBox[0].getBoundingClientRect(); var shouldStick = searchRect.top <= 60; console.log('Sticky check:', { shouldStick, searchTop: searchRect.top, isStuck }); // 调试 if (shouldStick && !isStuck) { stickSearchBox(); } else if (!shouldStick && isStuck) { unstickSearchBox(); } } function stickSearchBox() { if (isStuck) return; isStuck = true; console.log('Activating sticky search box'); // 调试 // 创建一个简单的锚点式粘性搜索 stickyClone = $('
'); stickyClone.html(`
点击搜索实验室检测项目……
`); stickyClone.css({ position: 'fixed', top: '60px', left: '15px', right: '15px', height: '50px', zIndex: '99999', backgroundColor: 'rgba(255, 255, 255, 0.95)', backdropFilter: 'blur(15px)', webkitBackdropFilter: 'blur(15px)', border: '1px solid rgba(255, 76, 136, 0.2)', boxShadow: '0 8px 32px rgba(255, 76, 136, 0.15)', borderRadius: '16px', cursor: 'pointer', display: 'flex', alignItems: 'center', justifyContent: 'center', color: '#6a297a', fontSize: '16px', fontWeight: '500' }); // 点击时,滚动到原始搜索框并聚焦 stickyClone.on('click', function(){ $('html, body').animate({ scrollTop: Math.max(0, $searchBox.offset().top - 100) }, 400, function(){ $searchBox.find('#searchBox').focus(); }); }); $('body').append(stickyClone); // 添加间距 $searchWrapper.css('paddingTop', '70px'); } function unstickSearchBox() { if (!isStuck) return; isStuck = false; console.log('正在停用粘性搜索框'); // 调试 if (stickyClone) { stickyClone.remove(); stickyClone = null; } $searchWrapper.css('paddingTop', ''); } $(window).on('scroll.sticky resize.sticky orientationchange.sticky', handleSticky); setTimeout(handleSticky, 500); })(); // 页面加载时初始化清除 (×) 按钮的可见性 var $sb = $('#searchBox'); $sb.closest('.search-box').toggleClass('has-value', ($sb.val() || '').trim().length > 0); // 10 秒后,将 Gravity Form(id=3)移至占位符并显示它 setTimeout(function() { var $placeholder = $('#gravityform-placeholder'); if (!$placeholder.length) return; var $gf = $('#gform_wrapper_3'); if (!$gf.length) { $gf = $('#gform_3').closest('.gform_wrapper'); } if (!$gf.length) { $gf = $('.gform_wrapper').filter(function(){ return $(this).find('#gform_3').length > 0; }).first(); } if ($gf.length) { $gf.hide(); $placeholder.append($gf); $gf.fadeIn(300); } }, 10000); // 仅当用户与表单/部分交互时才延迟加载 Google Maps API (function(){ var mapsSrc = null; var mapsInjected = false; function captureAndRemoveMapsScript() { if (window.google && window.google.maps) { mapsInjected = true; // 已加载 return; } var $scripts = $('script[src*="maps.googleapis.com/maps/api/js"]'); if ($scripts.length) { mapsSrc = $scripts.eq(0).attr('src'); // 移除所有匹配的脚本以防止立即加载 $scripts.remove(); } } function injectMapsScriptOnce() { if (mapsInjected) return; mapsInjected = true; if (!mapsSrc) return; var s = document.createElement('script'); s.src = mapsSrc; s.async = true; s.defer = true; document.head.appendChild(s); } // 尽快捕获脚本标签 captureAndRemoveMapsScript(); // 与结账部分或表单内的任何输入交互时加载 var interactionEvents = 'click focus touchstart change'; $(document).on(interactionEvents, '#checkout-section, #gform_wrapper_3, #gform_3, #gravityform-placeholder', function(){ injectMapsScriptOnce(); }); // 当部分靠近视口时加载 if ('IntersectionObserver' in window) { var observer = new IntersectionObserver(function(entries){ entries.forEach(function(entry){ if (entry.isIntersecting) { injectMapsScriptOnce(); observer.disconnect(); } }); }, { rootMargin: '200px' }); var el = document.getElementById('checkout-section'); if (el) observer.observe(el); } })(); }); })(jQuery);
4.3
基于240 条评论
谷歌

服务周到细致。

谷歌

我无言以对,他们救了我们。

2024 年 12 月 11
谷歌

效果快,服务礼貌周到,环境整洁,价格合理

阿卜杜拉·巴尔萨 2025年7月10日
谷歌

工作人员非常热情,整个过程也很顺利。结果和文件都按要求提供了。非常专业。

皮埃尔-路易·B 2025年11月28日
谷歌

曼谷最好的诊所。我去过两次,其中一次他们还免费帮我安排了去另一家医院的就诊!太棒了!强烈推荐!

阿尔贝托 2025年7月8日
谷歌

诊所快速高效,Flor的服务也很棒。

杰克·多佛 2025年10月5日
谷歌

MedEx效率很高,回复消息也很迅速。最终报告中的检测结果非常详细,条理清晰。一位医生还通过视频电话和我详细讨论了所有检测结果。我对MedEx的体验与我在美国接触过的许多专科医生一样好。谢谢!

特蕾西·拉斯科 2025年2月27日
谷歌

我通过 WhatsApp 发送了关于持续存在的医疗问题的咨询,需要快速检查一下,他们立即回复确认可以提供帮助,并在当晚就安排了检查。

里斯·泰勒 2025年1月14日
谷歌

他们每天都是开放日,强烈推荐给任何需要英语员工和良好客户服务的人。

纳夫林·纳鲁拉 2025年7月13日
已成功加入购物车! 查看购物车