meta主要为分HTTP标头信息(HTTP-EQUIV)和页面描述信息(NAME)。标头信息包括文档类型、字符集、语言等浏览器正确显示网页的信息及处理动作;网页描述如内容的关键字、摘要、作者和定义robots行为等,为搜索引擎索引提供信息。
http-equiv:将content属性连接到一个http头部字段,作为http头部的成分传递
name:将content属性与一个名字连接,当请求此名字的数据时,将发送content属性的值
content:根据http-equiv或name的不同属性值提供相应的值
lang:指定此meta标记的语言
<meta http-equiv="Content-Type" Content="text/html; Charset=utf-8" />
<meta http-equiv="Content-Language" Content="zh-CN" />
<meta http-equiv="Refresh" Content="15; Url=http://www.cnblogs.com/tonywang711/" />
<meta http-equiv="Expires" Content="Wed, 26 Feb 1997 08:21:57 GMT" />
指定网页在缓存中的过期时间。注意:必须使用GMT的时间格式或直接设为0
<meta http-equiv="Pragma" Content="No-cach" />
禁止浏览器从本地机的缓存中调阅页面内容
<meta http-equiv="Widow-target" Content="_top" />
强制页面在当前窗口以独立页面显示,来防止别人在框架里调用你的页面。Content选项:_blank、_top、_self、_parent
以上是http-equiv标头信息,为用户代理提供文档信息或定义浏览器动作,下面name主要为搜索引擎提供内容描述信息和robots定义,对搜索引擎优化起一定作用。
<meta name="Keywords" Content="word1,word2..." />
<meta name="Kyewords" Lang="en" Content="vacation,greece,sunshine" />
<meta name="Kyewords" Lang="FR" Content="vacances,grè:ce,soleil" />
当数个META元素提供文档语言信息时,搜索引擎会使用lang特性来过滤并通过用户的语言优先参照来显示搜索结果。
<meta name="Description" Content="网页信息的描述" />
<meta name="Robots"Content="All|None|Index|Noindex|Follow|Nofollow" />
all:文件将被检索,且页面上的链接可以被查询;
none:文件将不被检索,且页面上的链接不可以被查询;(和 "noindex, nofollow" 起相同作用)
index:文件将被检索;(让robot/spider登录)
follow:页面上的链接可以被查询;
noindex:文件将不被检索,但页面上的链接可以被查询;(不让robot/spider登录)
nofollow:文件将不被检索,页面上的链接可以被查询。(不让robot/spider顺着此页的连接往下抓取)
meta robots可以逐页控制对网站的访问,还可在robots.txt文件中声明URL,控制spider对它们的抓取。
<meta name="revisit-after" CONTENT="7 days" />
<meta name="Author" Content="xx" />
标注网页的作者或制作组,可以是名字,或Email
<meta name="Copyright" Content="本页版权归XXXX所有。All Rights Reserved" />
<meta name="Generator" Content="PCDATA|FrontPage" />
说明你所用编辑器( 说明这个做什么用? )
meta 标签常用的属性就这么多,一个页面最好有的如Content-Type,Keywords,Description,其它根据需要常用的有Robots,Refresh,Widow-target。