Los últimos tutoriales de desarrollo web
 

Meta httpEquiv Propiedad

Referencia Meta Object meta Object

Ejemplo

Devolver la cabecera HTTP de la información en el content de atributos:

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

El resultado de x será:

content-type
Inténtalo tú mismo "

Definición y Uso

Los conjuntos de propiedades httpEquiv o devuelve una cabecera HTTP de la información en el content atributo.

El http-equiv atributo puede ser utilizado para simular un encabezado de respuesta HTTP.

El valor de la http-equiv atributo depende del valor de la content atributo.

Nota: Si el name atributo se establece, el http-equiv atributo no se debe establecer.


Soporte para el navegador

Internet ExplorerFirefoxOperaGoogle ChromeSafari

La propiedad httpEquiv es compatible con todos los principales navegadores.


Sintaxis

Devolver la propiedad httpEquiv:

metaObject .httpEquiv

Establecer la propiedad httpEquiv:

metaObject .httpEquiv=HTTP-header

Algunos valoresHTTP-headercomúnmente utilizados son:

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 .

Valor de retorno

Type Description
String Information about the HTTP response message header

Más ejemplos

Ejemplo

Cambie el valor de los atributos http-equiv y de contenido. En el siguiente ejemplo se actualizará el documento cada 30 segundos:

document.getElementsByTagName("META")[0].httpEquiv = "refresh";
document.getElementsByTagName("META")[0].content = "30";
Inténtalo tú mismo "

Referencia Meta Object meta Object