Medex Seamless Care Delivery 경험 - 첫 약속에서 10% 할인 - 결제시 'TrymedEx'쿠폰 코드 사용

위치
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); // 새로 추가: labdos-inview 클래스 토글 및 고정 검색 상자 처리 (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); // 디버그 } function recompute() { var rect = rootEl.getBoundingClientRect(); var vpH = window.innerHeight || document.documentElement.clientHeight; // 중요한 부분인 경우 뷰에 포함되는 것으로 간주 #lab-dos가 보이는 경우 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('고정 검색 상자 초기화 중'); // 디버그 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('고정 검색 확인:', { shouldStick, searchTop: searchRect.top, isStuck }); // 디버그 if (shouldStick && !isStuck) { stickSearchBox(); } else if (!shouldStick && isStuck) { unstickSearchBox(); } } function stickSearchBox() { if (isStuck) return; isStuck = true; console.log('고정 검색 상자 활성화 중'); // 디버그 // 간단한 앵커 스타일 고정 검색 상자 생성 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) 관찰자.observe(el); } })(); }); })(jQuery);
4.3
240개의 리뷰를 기반으로
Google

좋은 서비스. 세심한 주의와 배려.

Google

나는 말할 수 없다. 그들은 우리를 구했다

2024년 12월 11
Google

빠른 결과, 정중함, 깔끔함, 공정한 가격

압둘라 바르사 2025년 7월 10일
Google

직원들이 친절했고 절차도 순조로웠습니다. 요청한 대로 결과와 서류가 제공되었습니다. 매우 전문적이었습니다.

피에르 루이 B 2025년 11월 28일
Google

방콕 최고의 병원입니다. 두 번이나 갔는데, 한 번은 다른 병원 진료를 무료로 예약해 주었습니다! 최고예요! 강력 추천합니다.

알베르토 2025년 7월 8일
Google

빠르고 효율적인 진료, 플로르의 훌륭한 서비스

잭 도버 2025년 10월 5일
Google

MedEx는 매우 효율적이었고 제 메시지에 빠르게 답장해 주었습니다. 검사 결과는 매우 자세하고 최종 보고서에 잘 정리되어 있었습니다. 의사 선생님이 화상 통화로 모든 검사 결과를 자세히 설명해 주셨습니다. MedEx와의 경험은 미국에서 많은 전문의를 만나본 경험 중 가장 좋았습니다. 감사합니다!

트레이시 라스코 2025년 2월 27일
Google

저는 진행 중인 건강 문제와 관련하여 WhatsApp으로 문의를 보냈고, 빠른 검진이 필요했습니다. 그들은 즉시 답장을 보내 도움을 줄 수 있다는 것을 확인했고, 그날 저녁에 그렇게 했습니다.

리스 테일러 2025년 1월 14일
Google

이 곳은 매일 영업하며, 영어가 가능한 직원과 좋은 고객 서비스를 원하는 사람에게 추천할 만한 곳입니다.

나브린 나룰라 2025년 7월 13일
장바구니에 성공적으로 담겼습니다! 장바구니 보기