通话
H5直接调用
- 方式一
<a href="tel: 18863636969">点击拨打</a>
- 方式二
<a href="wtai://wp/mc;18863636969">点击拨打</a>
JS 方式
点击事件跳转
window.location.href = "tel: 18863636969"
jquerylocation.href = "tel: 18863636969"
短信
将通话中的 "tel:" 换成 "sms:"
<a href="tel: 18863636969">点击拨打</a>
<a href="wtai://wp/mc;18863636969">点击拨打</a>
点击事件跳转
window.location.href = "tel: 18863636969"
jquerylocation.href = "tel: 18863636969"
将通话中的 "tel:" 换成 "sms:"