tutorial pengembangan web terbaru
 

Meta httpEquiv Properti

Referensi Obyek Meta meta Object

Contoh

Kembali header HTTP untuk informasi dalam content atribut:

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

Hasil x akan:

content-type
Cobalah sendiri "

Definisi dan Penggunaan

The httpEquiv set properti atau mengembalikan header HTTP untuk informasi dalam content atribut.

The http-equiv atribut dapat digunakan untuk mensimulasikan header respon HTTP.

Nilai dari http-equiv atribut tergantung pada nilai content atribut.

Catatan: Jika name atribut diatur, http-equiv atribut tidak harus ditetapkan.


Dukungan Browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Properti httpEquiv didukung di semua browser utama.


Sintaksis

Kembali properti httpEquiv:

metaObject .httpEquiv

Mengatur properti httpEquiv:

metaObject .httpEquiv=HTTP-header

Beberapa yang umum digunakan nilaiHTTP-headeradalah:

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 .

Kembali Nilai

Type Description
String Information about the HTTP response message header

Contoh lebih

Contoh

Mengubah nilai dari http-equiv dan konten atribut. Contoh berikut akan menyegarkan dokumen setiap 30 detik:

document.getElementsByTagName("META")[0].httpEquiv = "refresh";
document.getElementsByTagName("META")[0].content = "30";
Cobalah sendiri "

Referensi Obyek Meta meta Object