使用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" />