diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
commit | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (patch) | |
tree | 0dd8b084480983cf9f9680e8aedb92782a921b13 /files/es/web/api/htmllabelelement | |
parent | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (diff) | |
download | translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.gz translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.bz2 translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.zip |
initial commit
Diffstat (limited to 'files/es/web/api/htmllabelelement')
-rw-r--r-- | files/es/web/api/htmllabelelement/index.html | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/files/es/web/api/htmllabelelement/index.html b/files/es/web/api/htmllabelelement/index.html new file mode 100644 index 0000000000..50df0281c2 --- /dev/null +++ b/files/es/web/api/htmllabelelement/index.html @@ -0,0 +1,82 @@ +--- +title: HTMLLabelElement +slug: Web/API/HTMLLabelElement +tags: + - API + - HTML DOM + - HTMLLabeledElement + - Interface + - Referencia +translation_of: Web/API/HTMLLabelElement +--- +<div>{{ APIRef("HTML DOM") }}</div> + +<p>La interfaz <strong><code>HTMLLabelElement</code></strong> proporciona acceso a propiedades especificas de los elementos {{HTMLElement("label")}}. A su vez, hereda métodos y propiedades de la interfaz base {{domxref("HTMLElement")}}.</p> + +<p>{{InheritanceDiagram(600,120)}}</p> + +<h2 id="Propiedades">Propiedades</h2> + +<p><em>Heredando propiedades de los elementos padres {{domxref("HTMLElement")}}.</em></p> + +<dl> + <dt>{{domxref("HTMLLabelElement.control")}} {{ReadOnlyInline}}</dt> + <dd>Es un {{domxref("HTMLElement")}} representando el control a la cual cada etiqueta esta asociado.</dd> + <dt>{{domxref("HTMLLabelElement.form")}} {{ReadOnlyInline}}</dt> + <dd>Es un objeto {{domxref("HTMLFormElement")}} representado el formulario al cual el control etiquetado está asociado, arrojando el valor <code>null</code>, si no hay asociado ningun control o si ese control no está asociado con un formulario. En otras palabras, esto es un atajo para: <code><em>HTMLLabelElement</em>.control.form</code>.</dd> + <dt>{{domxref("HTMLLabelElement.htmlFor")}}</dt> + <dd>Este es un contenedor de caracteres que contiene el ID del control etiquetado, esto es lo que refleja el atributo {{htmlattrxref("for", "label")}}</dd> +</dl> + +<h2 id="Métodos">Métodos</h2> + +<p><em>No hay metodos específicos, hereda los metodos de los elelemtos padres, {{domxref("HTMLElement")}}.</em></p> + +<h2 id="Especificaciones">Especificaciones</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Especificación</th> + <th scope="col">Estatus</th> + <th scope="col">Comentario</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG', "#htmllabelelement", "HTMLLabelElement")}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td> </td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', "forms.html#the-label-element", "HTMLLabelElement")}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td>La propiedad <code>accessKey</code> ahora está definida en: {{domxref("HTMLElement")}}.<br> + La siguiente propiedad ha sido agregada: <code>control</code>.</td> + </tr> + <tr> + <td>{{SpecName('DOM2 HTML', 'html.html#ID-13691394', 'HTMLLabelElement')}}</td> + <td>{{Spec2('DOM2 HTML')}}</td> + <td>Sin cambios desde: {{SpecName("DOM1")}}.</td> + </tr> + <tr> + <td>{{SpecName('DOM1', 'level-one-html.html#ID-13691394', 'HTMLLabelElement')}}</td> + <td>{{Spec2('DOM1')}}</td> + <td>definición inicial</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidad_de_Navegador_Web">Compatibilidad de Navegador Web</h2> + +<div> +<div class="hidden">La tabla de compatibilidad en esta página es generada por datos estructurados. si ud. desea contribuir a estos datos, por favor ingrese al siguiente link: <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> y envienos un requerimeinto (pull request)</div> + +<p>{{Compat("api.HTMLLabelElement")}}</p> +</div> + +<h2 id="Ver_también">Ver también</h2> + +<ul> + <li>Elementos HTML implementando esta interfaz: {{HTMLElement("label")}}</li> + <li>{{HTMLElement("form")}}</li> + <li>{{domxref("HTMLFormElement")}}</li> +</ul> |