// 一键拨号 const phoneBtn = document.getElementById('phoneCallBtn'); if (phoneBtn) { phoneBtn.addEventListener('click', function(e) { e.preventDefault(); window.location.href = `tel:15553020099`; }); } })();