移动设备忽略将页面中的数字识别为电话号码的方法

在做移动端l的web开发的时候; IOS 上的Safari总会把长串数字识别为电话号码,文字变成蓝色,点击还会弹出菜单添加到通讯录。

解决方法:

只要加上 :

 <meta name = "format-detection" content = "telephone=no">  

meta标签中format-detection翻译成中文的意思是“格式检测”,是用来检测html里的文本格式的,还包括:
  1. <meta name="format-detection" content="telephone=no">  //禁止把数字转化为拨号链接
  2. <meta name="format-detection" content="email=no">  //禁止邮箱,禁止发送邮件
  3. <meta name="format-detection" content="adress=no">  //禁止地址跳转至地图
  4. <meta name="format-detection" content="telephone=no,email=no,adress=no">  //合并写法
 
posted @ 2018-04-20 10:42  goodbyepeterpan  阅读(386)  评论(0编辑  收藏  举报