亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

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>