Esta página ha sido traducida del inglés por la comunidad.Aprende más y únete a la comunidad de MDN Web Docs.
<object>
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since julio de 2015.
Elelemento HTML<object> representa un recurso externo, que puede ser tratado como una imagen, un contexto de navegación anidado, o como un recurso que debe ser manejado por un plugin.
In this article
Pruébalo
<object type="video/mp4" data="/shared-assets/videos/flower.mp4" width="250" height="200"></object>| Content categories | Flow content;phrasing content;embedded content, palpable content; if the element has ausemap attribute,interactive content;listed,submittableform-associated element. |
|---|---|
| Contenido permitido | cero o más elementos<param> , luegotransparent. |
| Tag omission | Ninguna, tanto la etiqueta inicial como la final son obligatorias. |
| Padres permitidos | Cualquier elemento que acepteembedded content (contenido incrustado). |
| Permitted ARIA roles | application,document,img |
| Interfaz DOM | HTMLObjectElement |
Atributos
Este elemento incluye losglobal attributes.
archiveonlyObsoletoUna lista separada por espacios de las URl's de archivos o recursos para el objeto.
borderObsoletoEl grosor de una línea de margen alrededor del control, en pixeles.
classidonlyObsoletoThe URI of the object's implementation. It can be used together with, or in place of, thedata attribute.
codebaseonlyObsoletoThe base path used to resolve relative URIs specified byclassid,data, orarchive. If not specified, the default is the base URI of the current document.
codetypeonlyObsoletoThe content type of the data specified byclassid.
dataLa dirección de la fuente, escrita como una URL válida. Al menos uno de los dos atributos,data otype, deben estar definidos.
declareonlyObsoletoThe presence of this Boolean attribute makes this element a declaration only. The object must be instantiated by a subsequent
<object>element. In HTML5, repeat the <object> element completely each that that the resource is reused.formEl elemento form, si es que hay alguno, al que el objeto está asociado (suform propietario). El valor de este atributo debe ser el ID de un elemento
<form>del mismo documento.heightLa altura del recurso mostrado, enCSS pixels. — (Valores absolutos unicamente.NO percentages)
nameEl nombre de un contexto de navegación válido (HTML5), o el nombre del control (HTML4).
standbyonlyObsoletoA message that the browser can show while loading the object's implementation and data.
tabindexonlyObsoletoThe position of the element in the tabbing navigation order for the current document.
typeElcontent type del recurso especificado mediantedata. Al menos uno de los dos atributos,data otype, deben estar definidos.
typemustmatchEste valor booleano indica si el atributotype y elcontent type real del recurso deben coincidir para porder ser usados.
usemapUna refercia hash-name a un elemento
<map>; es decir un '#' seguido del valor de unnamede un elemento map.widthEl ancho del recurso mostrado, enCSS pixels. — (Valores absolutos unicamente.NO percentages)
Ejemplos
>Incrustar una película flash
<!-- Incrustar una película flash --><object data="movie.swf" type="application/x-shockwave-flash"></object><!-- Incrustar una película flash con parámetros --><object data="movie.swf" type="application/x-shockwave-flash"> <param name="foo" value="bar" /></object>Especificaciones
| Specification |
|---|
| HTML> # the-object-element> |