Los últimos tutoriales de desarrollo web
 

Tipo de enlace Propiedad

Enlace de referencia de objetos enlace de objetos

Ejemplo

Devolver el tipo MIME del documento vinculado:

var x = document.getElementById("myLink").type;

El resultado de x será:

text/css
Inténtalo tú mismo "

Definición y Uso

Los conjuntos de propiedades de tipo o devuelve el tipo de contenido (tipo MIME) del documento vinculado.

Consejo: Los ejemplos de tipos MIME son: "text / css", "text / javascript", "image / gif", etc.


Soporte para el navegador

Internet ExplorerFirefoxOperaGoogle ChromeSafari

La propiedad type es compatible con todos los principales navegadores.


Sintaxis

Devolver la propiedad Tipo:

linkObject .type

Establecer la propiedad Tipo:

linkObject .type=MIME-type

Valores de propiedad

Value Description
MIME-type The MIME type of the linked document.
Look at IANA MIME types for a complete list of standard MIME types

Detalles técnicos

Valor de retorno: Una cadena, que representa el tipo de contenido del documento vinculado

Enlace de referencia de objetos enlace de objetos