h5拨打电话 写法IOS无效

    xiaoxiao2022-07-07  209

    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() }, 成功拉起打电话
    最新回复(0)