明明寫的一串數字沒加鏈接樣式,而iPhone會自動把你這個文字加鏈接樣式、並且點擊這個數字還會自動撥號。因為自動識別成了telephone;
在html頭加入以下代碼:
<meta name="format-detection" content="telephone=no" />
<meta name="format-detection" content="telephone=yes" />
telephone=no就禁止了把數字轉化為撥號鏈接;
telephone=yes就允許把數字轉化為撥號鏈接;
如果需要某一些地方添加撥號鏈接,使用如下代碼即可:
<a href="tel:18888888888">18888888888</a>
發佈留言