h5拨打电话 写法IOS无效
h5拨打电话window.location.href写法IOS无效写成html vue写法<div class="call" @click="call"><img src="../../../../assets/images/iphon.png"><span :class="{iscallone:iscallone}">拨打守护热线</spa...
·
h5拨打电话 window.location.href 写法IOS无效写成
html vue写法
<div class="call" @click="call"><img src="../../../../assets/images/iphon.png"><span :class="{iscallone:iscallone}">拨打守护热线</span><span :class="{iscalltwo:iscalltwo}">立即拨打热线</span></div>
js
call(){
window.location.href = 'tel://400-920-5245';
},
window.location.href = 'tel://400-920-5245';IOS无效,安卓有效
改成
html
<div class="call" @click="call"><img src="../../../../assets/images/iphon.png"><span :class="{iscallone:iscallone}">拨打守护热线</span><span :class="{iscalltwo:iscalltwo}">立即拨打热线</span></div>
<a href="" v-show="false" ref="tels"></a>
多加一个a标签拉起打电话
js
call(){
// window.location.href = 'tel://400-920-5245';
this.$refs.tels.href = `tel://400-920-5245`
this.$refs.tels.click()
},
成功拉起打电话
更多推荐
已为社区贡献6条内容
所有评论(0)