HTML DOM httpEquiv 属性
定义和用法
httpEquiv 属性把 content 属性连接到 HTTP 头部。
语法
- metaObject.httpEquiv=content-type|expires|refresh|set-cookie
实例
本例每 5 秒刷新页面:
- <html>
- <head>
- <meta http-equiv="refresh" content="5" />
- </head>
- <body>
- <script type="text/javascript">
- x=document.getElementsByTagName("meta")[0];
- document.write("Http equiv: " +
x.httpEquiv
);- </script>
- </body>
- </html>