HTML里面meta name标签的属性
    <meta   name="KEYWords"    contect="">向搜索引擎说明你的网页的关键词;
<meta   name="DEscription"    contect="">告诉搜索引擎你的站点的主要内容; 
<meta   name="Author"    contect="你的姓名">告诉搜索引擎你的站点的制作的作者;
<meta    http-equiv="Content-Type"    contect="text/html";charset=gb_2312-80">和  <meta    http-equiv="Content-Language"    contect="zh-CN">用以说明主页制作所使用的文字以及语言;又如英文是ISO-8859-1字符集,还有BIG5、utf-8、shift-Jis、Euc、Koi8-2等字符集; 
<meta    http-equiv="Refresh"    contect="n;url=http://yourlink">定时让网页在指定的时间n内,跳转到页面http://yourlink;
<meta    http-equiv="Pragma"    contect="no-cache">是用于设定禁止浏览器从本地机的缓存中调阅页面内容,设定后一旦离开网页就无法从Cache中再调出;
Pragma (cach模式)
说明:禁止浏览器从本地机的缓存中调阅页面内容。
用法:<Meta http-equiv="Pragma" Content="No-cach">
注意:网页不保存在缓存中,每次访问都刷新页面。这样设定,访问者将无法脱机浏览。
语法:
<meta name="name" content="string">
让网页每隔一段时间刷新一次,若要10秒刷新一次,代码这样写:
<meta http-equiv="refresh" content="10">
控制页面缓冲,如不要页面缓冲的代码这样写:
<meta http-equiv="Cache-Control" CONTENT="no-cache">