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

2021/5/17 18:57:54

本文主要是介绍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" />


这篇关于window.location.href 拨打电话 IOS端不起作用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程