1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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>
|