Los últimos tutoriales de desarrollo web
 

Link rel Propiedad

Enlace de referencia de objetos enlace de objetos

Ejemplo

Devolver la relación entre el documento actual y el documento vinculado:

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

El resultado de x será:

stylesheet
Inténtalo tú mismo "

Definición y Uso

Los conjuntos de propiedades rel o una lista separada por espacios que define la relación entre el documento actual y el documento vinculado.


Soporte para el navegador

Internet ExplorerFirefoxOperaGoogle ChromeSafari

La propiedad rel es compatible con todos los principales navegadores.

Nota: El valor de "búsqueda" no es compatible con Opera o Safari.

Nota: El valor "barra lateral" no es compatible con Internet Explorer, Safari o Chrome.


Sintaxis

Devolver la propiedad rel:

linkObject .rel

Establecer la propiedad rel:

linkObject .rel=relationship

Valores de propiedad

Value Description
alternate Linked page is an alternative version of the current document
appendix Linked page is the appendix page for the current document
chapter Refers to a chapter
contents Linked page is the table of contents for the current document
copyright Linked page is the copyright/policy for the current document
glossary Linked page is the glossary page for the current document
help Linked page is the help page for the current document
index Linked page is the index page for the current document
next Refers to the next page
offline Refers to a location that contains a path to the CDF file
prev Refers to the previous page
search Refers to an XML file in OpenSearch description format
section Link to a section in a list of documents
shortcut icon Refers to an icon location
sidebar Refers to the bookmark panel
start Refers to the first page (used by search engines to show the first page)
stylesheet Linked page is the style sheet for the current document
subsection Linked page is a subsection for the current document

Detalles técnicos

Valor de retorno: Una cadena, lo que representa una lista separada por espacios de tipos de relaciones

Páginas relacionadas

Referencia HTML: HTML <link> atributo rel


Enlace de referencia de objetos enlace de objetos