HTML5
一、Meta标签中的format-detection属性及其含义
意为:格式检测
或许你会有这样的经历:当你在制作手机端的页面中,点击了没有加任何链接的格式的数字时,这时手机会进行自动拔号提示操作!
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="msapplication-tap-highlight" content="no">
5、设置响应式网页必备 <meta name="viewport" content="user-scalable=no,initial-scale=1">
(因为:包括iOS上的Safari和Windows Phone上的IE在内的一些移动端浏览器会在超链接元素被触摸(tap)的时候显示一个半透明的高亮背景,禁用这种默认的行为来更好地控制自己站点的外观和体验)