Meta httpEquiv 属性
Meta 对象的 httpEquiv 属性可以设置或者返回 content 属性中 HTTP 头部信息
http-equiv 属性可以用于伪装 HTTP 响应头部信息
http-equiv 属性值依赖 content 属性的值
如果 name 属性已设置, http-equiv 属性就无需设置
语法
设置 httpEquiv 属性
linkObject.httpEquiv=" HTTP-header "
返回 httpEquiv 属性
linkObject.httpEquiv
值说明
一些常用的 HTTP-header 值
值 | 描述 |
---|---|
cache-control | 控制文档的缓存机制。允许的值: public - 所有内容都将被缓存(客户端和代理服务器都可缓存) private - 内容只缓存到私有缓存中(仅客户端可以缓存,代理服务器不可缓存) no-cache - 不缓存 no-store - 缓存当不归档 范例:<meta http-equiv="cache-control" content="no-cache"> |
content-language | 响应体的语言 范例: <meta http-equiv="content-language" content="en-US"> |
content-type | 返回内容的MIME类型提示:通常用于字符集的设置 范例:<meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
date | 原始服务器消息发出的时间 范例 : <meta http-equiv="date" content="Wed, 16 Feb 2011 22:34:13 GMT"> |
expires | 响应过期的日期和时间 范例: <meta http-equiv="expires" content="Fri, 30 Dec 2011 12:00:00 GMT"> |
last-modified | 请求资源的最后修改时间 范例: <meta http-equiv="last-modified" content="Mon, 03 Jan 2011 17:45:57 GMT"> |
location | 用来重定向接收方到非请求URL的位置来完成请求或标识新的资源 范例: <meta http-equiv="location" content="URL=http://www.twle.cn"> |
refresh | 定义间隔多久后刷新页面 范例: <meta http-equiv="refresh" content="300"> |
set-cookie | 创建一个 cookie ,包含了 cookie 名,cookie 值,过期时间 范例: <meta http-equiv="set-cookie" content="twlecookie=myContent;expires=Fri, 30 Dec 2019 12:00:00 GMT; path=http://www.twle.cn"> |
window-target | 指定要载入的框架名 |
浏览器支持
所有主要浏览器都支持 httpEquiv 属性
范例
显示 HTTP 头部信息
<meta http-equiv="content-type" content="text/html;charset=utf-8"> <script> function displayResult(){ var x=document.getElementsByTagName("meta")[0].httpEquiv; alert(x); } </script> <button type="button" onclick="displayResult()">显示 HTTP-Equiv</button>