页面头部<meta>中的属性和含义

1<meta name="robots" content="index, follow" />

   none:搜索引擎将忽略此网页,等价于noindex,nofollow。

   noindex:搜索引擎不索引此网页。

   nofollow:搜索引擎不继续通过此网页的链接索引搜索其它的网页。

   all:搜索引擎将索引此网页与继续通过此网页的链接索引,等价于index,follow。

   index:搜索引擎索引此网页。

   follow:搜索引擎继续通过此网页的链接索引搜索其它的网页。
   搜索引擎看到这些限制一般就会按照这个去做,这是一种约定吧相当于,搜索引擎当然也可以不遵守这个约定

2<meta name="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就禁止了把数字转化为拨号链接!
telephone=yes就开启了把数字转化为拨号链接,要开启转化功能,这个meta就不用写了,在默认是情况下就是开启!

二、email

告诉设备不识别邮箱,点击之后不自动发送

email=no禁止作为邮箱地址!
email=yes就开启了把文字默认为邮箱地址,这个meta就不用写了,在默认是情况下就是开启!

三、adress

adress=no禁止跳转至地图!
adress=yes就开启了点击
地址直接跳转至地图的功能,在默认是情况下就是开启!

3<meta name="apple-mobile-web-app-capable" content="yes" />

网站开启对web app程序的支持。

4<meta name="apple-mobile-web-app-status-bar-style" content="black" />

  • 在web app应用下状态条(屏幕顶部条)的颜色;
  • 默认值为default(白色),可以定为black(黑色)和black-translucent(灰色半透明)。
  • 注意:若值为“black-translucent”将会占据页面px位置,浮在页面上方(会覆盖页面20px高度–iphone4和itouch4的Retina屏幕为40px)。

5<meta name="apple-touch-fullscreen" content="yes">

"添加到主屏幕“后,全屏显示 <meta name="apple-mobile-web-app-capable" content="yes" />
这meta的作用就是删除默认的苹果工具栏和菜单栏。content有两个值”yes”和”no”,当我们需要显示工具栏和菜单栏时,这个行meta就不用加了,默认就是显示。
<meta content="telephone=no" name="format-detection" />
<meta content="email=no" name="format-detection" />//将不识别邮箱
告诉设备忽略将页面中的数字识别为电话号码 
iOS用rel="apple-touch-icon",android 用rel="apple-touch-icon-precomposed"。这样就能在用户把网页存为书签时,在手机HOME界面创建应用程序样式的图标。

6<meta http-equiv="Pragma" content="no-cache">

和以下内容配合使用达到清除浏览器缓存效果

<meta http-equiv="Cache-Control" content="no-cache">

<meta http-equiv="Expires" content="0">


posted @ 2015-08-26 12:38  MadamMichael  阅读(912)  评论(0编辑  收藏  举报