HTMLButtonElement.labels
The HTMLButtonElement.labels
read-only property returns a
NodeList
of the <label>
elements associated with the
<button>
element.
Syntax
var labelElements = button.labels;
Return value
A NodeList
containing the <label>
elements associated
with the <button>
element.
Example
HTML
<label id="label1" for="test">Label 1</label>
<button id="test">Button</button>
<label id="label2" for="test">Label 2</label>
JavaScript
window.addEventListener("DOMContentLoaded", function() {
const button = document.getElementById("test");
for(var i = 0; i < button.labels.length; i++) {
console.log(button.labels[i].textContent); // "Label 1" and "Label 2"
}
});
Specifications
Specification |
---|
HTML Standard # dom-lfe-labels-dev |
Browser compatibility
BCD tables only load in the browser