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>
文章參考: /Boale_H/article/details/108582436