其他分享
首页 > 其他分享> > window.location.href 拨打电话 IOS端不起作用

window.location.href 拨打电话 IOS端不起作用

作者:互联网

使用window.location.href 拨打电话,发现android端能跳转到通讯页面,但ios没有反应:

window.location.href = 'tel://'+ phoneNum 

在网上查阅资料后,最常见的几种方法:

方式一:

<a href="" ref="tels"></a>
this.$refs.tels.href = `tel://`'+ phoneNum
this.$refs.tels.click()

方式二:

setTimeout(() => {
window.location.href = 'tel://'+ phoneNum 
},0)

方式三:

window.location = 'tel://'+ phoneNum 

测试过后,发现都没有作用。

最后在同事的帮助下,解决啦,在index.html文件中,添加

<meta name="format-detection" content="telephone=yes" />

标签:tel,phoneNum,refs,IOS,window,href,location
来源: https://blog.csdn.net/weixin_45693257/article/details/116943004