1)index.html在<head></head>中加入这一段:
<meta name="format-detection" content="telephone=yes"/>
2)js中设置点击事件:
window.location.href = 'tel:4000-000-000'
或者直接使用:
<a href="tel:4000-000-000">拨打电话</a>
若涉及到发送短信可以设置:
// 添加内容
window.location.href = 'sms:10086?body=短信内容'
// 不添加内容
window.location.href = 'sms:10086'
或者:
<a href="sms:10086">发送短信</a>
<a href="sms:10086?body=短信内容"></a>
文章参考: https://blog.csdn.net/Boale_H/article/details/108582436
》请写在A标签上 <a href="tel:xxxxxxx"><img src="images/xxxx.jpg" width="1400" height="200"/></a>欢迎分享,转载请注明来源:内存溢出
评论列表(0条)