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" />
上一篇:提交代码仓库报错"error: failed to push some refs to"问题解决


下一篇:ServiceStack.RabbitMQ在站点中使用时导致静态页面无法正常解析