Neueste Web-Entwicklung Tutorials
 

Meta httpEquiv Immobilien

Meta Object Reference Meta Object

Beispiel

Bringen Sie den HTTP - Header für die Informationen im content - Attribut:

var x = document.getElementsByTagName("META")[0].httpEquiv;

Das Ergebnis von x wird:

content-type
Versuch es selber "

Definition und Verwendung

Die httpEquiv Eigenschaft legt einen HTTP - Header für die Informationen im content - Attribut.

Das http-equiv - Attribut kann verwendet werden , um eine HTTP - Antwort - Header zu simulieren.

Der Wert des http-equiv - Attribut ist abhängig vom Wert des content - Attribut.

Hinweis: Wenn der name Attribut gesetzt, das http-equiv sollte Attribut nicht eingestellt werden.


Browser-Unterstützung

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Die httpEquiv Eigenschaft wird in allen gängigen Browsern unterstützt.


Syntax

Bringen Sie die httpEquiv Eigenschaft:

metaObject .httpEquiv

Stellen Sie die httpEquiv Eigenschaft:

metaObject .httpEquiv=HTTP-header

Einige häufig verwendeteHTTP-Header- Werte sind:

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 .

Rückgabewert

Type Description
String Information about the HTTP response message header

Mehr Beispiele

Beispiel

Ändern Sie den Wert der http-equiv und Inhaltsattribute. Das folgende Beispiel wird das Dokument alle 30 Sekunden neu geladen:

document.getElementsByTagName("META")[0].httpEquiv = "refresh";
document.getElementsByTagName("META")[0].content = "30";
Versuch es selber "

Meta Object Reference Meta Object