欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM httpEquiv 屬性

定義和用法

httpEquiv 屬性把 content 屬性連接到 HTTP 頭部。

語(yǔ)法

metaObject.httpEquiv=content-type|expires|refresh|set-cookie

實(shí)例

本例每 5 秒刷新頁(yè)面:

<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>