在iOS的页面中会自动识别“电话号码”、“邮件”、“地址等”;经常遇到将日期等无关数字识别为电话号码,可以通过html的meta来关闭。

<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" />

相关内容

编辑 | 历史 最近由「jilili」在 2017-05-16 04:26:42 修改