嗨,我在客户网站 1234insurance.com 上工作,标题中有一个图形电话图像。javascript 使用 callto 函数。我基本上只是希望点击通话功能可以在尽可能多的手机上运行。人们通常如何处理这个问题?
当您从手机上单击它时,它会显示:callto://310-473-2680 的网页可能暂时关闭,或者它可能已永久移动到新的网址。
<!-- end of .call-to-action -->
<!-- IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/inc /js/html5.js" type="text/javascript"></script>
<![endif]-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"> </script>
<script>
function isiPhone(){
var agent = navigator.userAgent;
var isIphone = ((agent.indexOf('iPhone') != -1) || (agent.indexOf('iPod') != -1)) ;
if (isIphone) {
return true;
} else {
return false;
}
}
$(document).ready(function() {
$('a[href*="callto"]').each(function(){
call_href = $(this).attr('href');
if(isiPhone()){
call_href = call_href.replace('callto://','tel:');
$(this).attr('href',call_href);
}
});
});
/*