http-equiv 相当于文件的头作用,用于向浏览器传递一些有用的信息,以帮助正确和精确地显示网页内容,与之对应的属性为content。
Meta标签的http-equiv的语法格式:
参数:
1.expires(期限) 用于设置网页的到期时间,一旦网页到期,必须到服务器上重新传输。
eg:<meta http-equiv="expires" content="Wed, 20 Jun 2007 22:33:00 GMT">
注:必须是GMT标准时间
2.pragma(cache) 用于设置浏览器禁止从本地的缓存中调取页面内容,设定后一旦离开,网页就无法从cache中调出。
eg:
3.refresh(刷新) 自动刷新并指向新页面
eg:<meta http-equiv="Refresh" content="2;URL=http://www.net.cn/">
//两秒钟后跳转到http://www.net.cn。如果省略url则2秒钟后跳转到本页面,即刷新本页面。
4.Set-Cookie(设置cookie) 如果网页过期,存盘的cookie将会被删除。(是设置网页过期时间还是设置网页过期时间,需后续研究)
eg:<meta http-equiv="Set-Cookie" content="cookievalue=xxx;expires=Wednesday, 20-Jun-2007 22:33:00 GMT; path=/">//时间格式依旧是GMT格式。
5.window-target(显示窗口的设定) 强制页面在当前页面以独立窗口展示,防止别人在框架中调用自己的页面。
eg:<meta http-equiv="Window-target" content="_top">
6.content-type(显示字符集的设定) 设置页面使用的字符集
eg:<meta http-equiv="content-Type"content="text/html; charset=gb2312">