Meta标签中的format-detection属性
意为:格式检测
或许你会有这样的经历:当你在制作手机端的页面中,点击了没有加任何链接的格式的数字时,这时手机会进行自动拔号提示操作!
禁止这一提示方法:
<meta name="format-detection" content="telephone=no">
同理,还会有以下相关操作:
- 禁止跳转邮箱:
<meta name="format-detection" content="email=no">
- 禁止跳转地图:
<meta name="format-detection" content="adress=no">
- 禁止链接高亮:
<meta name="msapplication-tap-highlight" content="no">
- 设置响应式网页必备:
<meta name="viewport" content="user-scalable=no,initial-scale=1">