ios 数字禁止变成电话号码

1.使用meta来限制页面不转换电话号码

  1 <meta name="format-detection"content="telphone=no"/> 

 

2.如果你需要一些数字点击呼出电话,可以使用以下的标签

<a href="tel:15989233999">15989233999</a>

 

3.如果是cordova的HybirdApp,需要使用第2种方式在一些特定地方点击呼出电话时,

需要在config.xml加入以下配置才能生效

<access origin="tel:*" launch-external="yes" />
<allow-intent href="tel:*" />

 

posted @ 2016-04-21 13:23  daniel.xie  阅读(765)  评论(0编辑  收藏  举报