Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnología web para desarrolladores
  2. HTML: Lenguaje de etiquetas de hipertexto
  3. Referencia HTML
  4. Referencia de Elementos HTML
  5. <object>

Esta página ha sido traducida del inglés por la comunidad.Aprende más y únete a la comunidad de MDN Web Docs.

View in EnglishAlways switch to English

<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.

Pruébalo

<object  type="video/mp4"  data="/shared-assets/videos/flower.mp4"  width="250"  height="200"></object>
Content categoriesFlow 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 omissionNinguna, tanto la etiqueta inicial como la final son obligatorias.
Padres permitidos Cualquier elemento que acepteembedded content (contenido incrustado).
Permitted ARIA rolesapplication,document,img
Interfaz DOMHTMLObjectElement

Atributos

Este elemento incluye losglobal attributes.

archive onlyObsoleto

Una lista separada por espacios de las URl's de archivos o recursos para el objeto.

borderObsoleto

El grosor de una línea de margen alrededor del control, en pixeles.

classid onlyObsoleto

The URI of the object's implementation. It can be used together with, or in place of, thedata attribute.

codebase onlyObsoleto

The base path used to resolve relative URIs specified byclassid,data, orarchive. If not specified, the default is the base URI of the current document.

codetype onlyObsoleto

The content type of the data specified byclassid.

data

La dirección de la fuente, escrita como una URL válida. Al menos uno de los dos atributos,data otype, deben estar definidos.

declare onlyObsoleto

The 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.

form

El 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.

height

La altura del recurso mostrado, enCSS pixels. — (Valores absolutos unicamente.NO percentages)

name

El nombre de un contexto de navegación válido (HTML5), o el nombre del control (HTML4).

standby onlyObsoleto

A message that the browser can show while loading the object's implementation and data.

tabindex onlyObsoleto

The position of the element in the tabbing navigation order for the current document.

type

Elcontent type del recurso especificado mediantedata. Al menos uno de los dos atributos,data otype, deben estar definidos.

typemustmatch

Este valor booleano indica si el atributotype y elcontent type real del recurso deben coincidir para porder ser usados.

usemap

Una refercia hash-name a un elemento<map>; es decir un '#' seguido del valor de unname de un elemento map.

width

El ancho del recurso mostrado, enCSS pixels. — (Valores absolutos unicamente.NO percentages)

Ejemplos

Incrustar una película flash

html
<!-- 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

Compatibilidad con navegadores

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp