移动设备忽略将页面中的数字识别为电话号码的方法
在做移动端l的web开发的时候; IOS 上的Safari总会把长串数字识别为电话号码,文字变成蓝色,点击还会弹出菜单添加到通讯录。
解决方法:
只要加上 :
<meta name = "format-detection" content = "telephone=no">
meta标签中format-detection翻译成中文的意思是“格式检测”,是用来检测html里的文本格式的,还包括:
- <meta name="format-detection" content="telephone=no"> //禁止把数字转化为拨号链接
- <meta name="format-detection" content="email=no"> //禁止邮箱,禁止发送邮件
- <meta name="format-detection" content="adress=no"> //禁止地址跳转至地图
- <meta name="format-detection" content="telephone=no,email=no,adress=no"> //合并写法