[转]移动web开发中meta标签作用
今天在尝试做移动页面的时候遇到了一个问题,<meta content="telephone=no,email=no" name="format-detection">,不知道这句话具体含义是什么就查了下, 并且查到其他的一些标签的相关内容,记录在这里,方便以后常常查看。以下是关于format-detection的解释,如有错误请大家指出。 format-detection翻译成中文的意思是“格式检测”,顾名思义,它是用来检测html里的一些格式的,那关于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="format-detection" content="telephone=no,email=no,adress=no"每个设置的作用:一、telephone你明明写的一串数字没加链接样式,而iPhone会自动把你这个文字加链接样式、并且点击这个数字还会自动拨号!想去掉这个拨号链接该如何操作呢?这时我们的meta又该大显神通了,代码如下: telephone=no就禁止了把数字转化为拨号链接! 二、email 告诉设备不识别邮箱,点击之后不自动发送 email=no禁止作为邮箱地址! 三、adress adress=no禁止跳转至地图!
Meta 之 apple-mobile-web-app-capable 这meta的作用就是删除默认的苹果工具栏和菜单栏。content有两个值”yes”和”no”,当我们需要显示工具栏和菜单栏时,这个行meta就不用加了,默认就是显示。 加了该meta的情况 status-bar-style:black-translucent 原文地址:http://blog.sina.com.cn/s/blog_6d48e77101015kqr.html
|