时间:2010-05-16 15:18
meta标签分两大部分:http标题信息(http-equiv)和页面描述信息(name)。
一、http-equiv
http-equiv类似于http的头部协议,它回应给浏览器一些有用的信息,以帮助正确和精确地显示网页内容。常用的http-equiv类型有:
1、content-type和content-language(显示字符集的设定)
用法:<metahttp-equiv="content-type"content="text/html;charset=gb2312">或<metahttp-equiv="content-language"content="zh-cn">
设定页面使用的字符集,用以说明主页制作所使用的文字或语言,浏览器会根据此来调用相应的字符集显示页面内容。简体中文一般为gb2132,繁体中文为big5,日文的字符集是iso-2022-jp,韩文的是ks_c_5601等。
2、refresh(刷新)
用法:<metahttp-equiv="refresh"content="30">或<metahttp-equiv="refresh"content="5;url=abcdeduzw.cn">
让网页多少秒刷新自己,或在多少秒后让网页自动链接到其它网页。
3、expires(期限)
用法:<metahttp-equiv="expires"content="0">或<metahttp-equiv="expires"content="wed,26feb199708:21:57gmt">
指定网页在缓存中的过期时间,一旦网页过期,必须到服务器上重新调阅。注意:必须使用gmt的时间格式。
4、pragma(cach模式)
用法:<metahttp-equiv="pragma"content="no-cach">
网页不保存在缓存中,每次访问都刷新页面。这样设定,访问者将无法脱机浏览。
5、set-cookie(cookie设定)
<metahttp-equiv="set-cookie"content="cookievalue=xxx;expires=wednesday,21-oct-9816:14:21gmt;path=/">
浏览器访问某个页面时会将它存在缓存中,下次再次访问时就可从缓存中读取,以提高速度。当你希望访问者每次都刷新你广告的图标,或每次都刷新你的计数器,就要禁用缓存了。通常html文件没有必要禁用缓存,对于asp等页面,就可以使用禁用缓存,因为每次看到的页面都是在服务器动态生成的,缓存就失去意义。如果网页过期,那么存盘的cookie将被删除。必须使用gmt的时间格式。
6、window-target(显示窗口的设定)
用法:<metahttp-equiv="widow-target"content="_top">
强制页面在当前窗口以独立页面显示。这个属性是用来防止别人在框架里调用你的页面。content选项:_blank、_top、_self、_parent。
7、pics-label(网页rsac等级评定)
用法:<metahttp-equiv="pics-label"contect="(pics-1.1abcdeduzw.comigencommentrsacinorthamericaseverby
inet@microsoft.comforabcdmicrosoft.comon1997.06.30t14:21-0500r(n0s0v0l0))">
在ie的internet选项中有一项内容设置,可以防止浏览一些受限制的网站,而网站的限制级别就是通过该参数来设置的。
8、page-enter、page-exit(进入与退出)
用法:<metahttp-equiv="page-enter"content="blendtrans(duration=0.5)"><metahttp-equiv="page-exit"content="blendtrans(duration=0.5)">
或者:<metahttp-equiv="page-enter"content="revealtrans(duration=x,transition=y)"><metahttp-equiv="page-exit"content="revealtrans(duration=x,transition=y)">
这个是页面被载入和调出时的一些特效。注意:blendtrans是动态滤镜的一种,产生渐隐效果。另一种动态滤镜revealtrans也可以用于页面进入与退出效果:duration表示滤镜特效的持续时间(单位:秒);transition滤镜类型。表示使用哪种特效,取值为0-23。
9、ie6(页面生成器)
用法:<metahttp-equiv="ie6"content="generator">
页面生成器generator,是ie6。
10、content-script-type(脚本相关)
用法:<metahttp-equiv="content-script-type"content="text/javascript">
注意:这是近来w3c的规范,指明页面中脚本的类型。
二、name变量
name是描述网页的,对应于content(网页内容),以便于搜索引擎机器人查找、分类(目前几乎所有的搜索引擎都使用网上机器人自动查找meta值来给网页分类)。
11、keywords(关键字)
用法:<metaname="keywords"content="关键词1,关键词2,关键词3,关键词4">
为搜索引擎提供的关键字列表。注意:各关键词间用英文半角逗号“,”隔开。关键词数量最好保持在5个以内,关键词要和页面内容相关。
12、description(简介)
用法:<metaname="description"content="你网页的简述">
description用来告诉搜索引擎你的网站或该页面的主要内容,描述内容要和页面内容相关,字数在150个字以内。
13、robots(机器人向导)
用法:<metaname="robots"content="allnoneindexnoindexfollownofollow">
说明:robots用来告诉搜索机器人哪些页面需要索引,哪些页面不需要索引。content的参数有all、none、index、noindex、follow、nofollow。默认是all。
all:文件将被检索,且页面上的链接可以被查询;none:文件将不被检索,且页面上的链接不可以被查询;(和"noindex,nofollow"起相同作用);index:文件将被检索;(让robot/spider登录);follow:页面上的链接可以被查询;noindex:文件将不被检索,但页面上的链接可以被查询;(不让robot/spider登录);nofollow:文件将不被检索,页面上的链接可以被查询。(不让robot/spider顺着此页的连接往下探找)。
14、author(作者)
用法:<metaname="author"content="中国教育总网,eduzw@163.com">
标注网页的作者或制作组。content可以是:你或你的制作组的名字或email。
15、copyright(版权)
用法:<metaname="copyright"content="本页版权归毅衡所有。allrightsreservedicediary">
标注版权。
16、generator(编辑器)
用法:<metaname="generator"content="pcdatafrontpage">
编辑器的说明。
17、revisit-after(重访)
用法:<metaname="revisit-after"content="7days">www_chinaz_com
一般用做引导搜索引擎重新访问你的站点的时间间隔,一般使用days。
三、meta常用举例:
<metahttp-equiv=content-typecontent="text/html;charset=gb2312">
//设定页面语言为简体中文
<metacontent="关键字"name="keywords">
//设定关键字
<metacontent="内容描述"name="description">
//设定描述
<metahttp-equiv="refresh"content="30">
//设定该页面30秒自动刷新
<metaname="robots"content="index,follow"/>
//设定允许搜索引擎可以检索,页面上链接可以查询
<metaname="googlebot"content="index,follow"/>
//针对google的搜索机器人设定允许搜索引擎可以检索,页面上链接可以查询
<metaname="author"content="毅衡">
//页面作者
<metaname="copyright"content="allrightsreservedicediary">
//页面版权
<metaname="revisit-after"content="1days">
//设定回访为1天