前端打电话整理

2020-12-22  本文已影响0人  甜茶x

1.HTML中a标签的href属性tel点击可直接拨打电话(移动端)

    <a href="tel:13828172679">13622178579</a>

2.window.location跳转

    window.location.href = "tel://110"

3.uview-ui/uni-app

    uni.makePhoneCall({ 

        phoneNumber: this.servicePhone,

    });

4.微信小程序

    wx.makePhoneCall({ 

        phoneNumber: '1340000' //仅为示例,并非真实的电话号码

    })

上一篇 下一篇

猜你喜欢

热点阅读