例
内の情報のためのHTTPヘッダを返しcontent属性:
var x = document.getElementsByTagName("META")[0].httpEquiv;
xの結果は次のようになります。
content-type
»それを自分で試してみてください 定義と使用法
httpEquivプロパティセットまたは内の情報のHTTPヘッダーを返しcontent属性を。
http-equiv属性は、HTTPレスポンスヘッダをシミュレートするために使用することができます。
値http-equiv属性は、の値に依存するcontent属性。
注:場合はname属性が設定されている、 http-equiv属性が設定されるべきではありません。
ブラウザのサポート
httpEquivプロパティは、すべての主要なブラウザでサポートされています。
構文
httpEquivプロパティを返します:
metaObject .httpEquiv
httpEquivプロパティを設定します。
metaObject .httpEquiv=HTTP-header
いくつかの一般的に使用されるHTTPヘッダの値は次のとおりです。
Value | Description |
---|---|
content-type | Specifies the character set for the contents of the document. Tip:It is recommended to always specify the character set. Example: <meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
default-style | Specifies the preferred style sheet to use. Example: <meta http-equiv="default-style" content=" the documents preferred stylesheet "> Note: The value of the content attribute above must match the value of the ttitle attribute on a link element in the same document, or it must match the value of the title attribute on a style element in the same document. |
refresh | Defines a time interval for the document to refresh itself.
Example: <meta http-equiv="refresh" content="300"> Note: The value "refresh" should be used carefully, as it takes the control of a page away from the user. Using "refresh" will cause a failure in W3C's Web Content Accessibility Guidelines . |
戻り値
Type | Description |
---|---|
String | Information about the HTTP response message header |
その他の例
例
HTTP-当量とコンテンツの属性の値を変更します。 次の例では、文書を30秒ごとに更新されます:
document.getElementsByTagName("META")[0].httpEquiv = "refresh";
document.getElementsByTagName("META")[0].content = "30";
»それを自分で試してみてください メタオブジェクト