0

我正在制作一个移动网站,我是新手。我无法获取图像链接加载 herf (iOS6)。我正在尝试使用 j 查询移动点击保持事件方法

我将如何使用这种方式调用 tel herf

<a id="phone" herf="tel:2062710041"> <img src="call.gif" width="40" height="39"></a></div>  
<script>
$("phone").on('taphold', 'phone', tapholdHandler());

function tapholdHandler() {
    href = "tel:12062710041";
}
</script>
4

2 回答 2

1

尝试

function tapholdHandler() {
   window.location = "tel:12062710041";
}
于 2013-10-11T23:23:49.137 回答
0

更改$("phone")$("#phone")

例子

<script>
$("#phone").on('taphold', {duration: 1000}, tapholdHandler());
function tapholdHandler() {
    href = "tel:12062710041";
}
</script>
于 2013-10-11T23:25:56.280 回答