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' //仅为示例,并非真实的电话号码
})