可能重复:
How to create clickable telephone link with WordPress Custom Links?
再次问好&提前谢谢你的帮助。
当点击链接而不是onload时,我需要使用这个jQuery javascript。
<script type="text/javascript">
jQuery(document).ready(function(){
var href_value;
href_value = jQuery('li.phone a').attr('href');
href_value = href_value.replace('http://','tel:');
jQuery('li.phone a').attr('href',href_value);
});
</script>
我正在使用WordPress自定义链接,我需要为电话号码创建一个可点击的链接。
我发现这篇文章:“How to create clickable telephone link with WordPress Custom Links?”有人有类似的问题,我尝试了jQuery脚本但是当我点击链接时它不起作用。我收到错误:需要身份验证,需要用户名和密码。我相信如果可点击而不是onload,这段代码就可以了。
答案 0 :(得分:1)
以下是代码:
jQuery(document).ready(function($){
$('li.phone a').click(function(){
var $this = $(this);
var href_value = $this.attr('href').replace('http://','tel:');
$this.attr('href',href_value);
})
})