语法
var labelElements = input.labels;
Return value
NodeList
包含 <label>
元素和 <input>
元素.
实例
HTML
<label id="label1" for="test">Label 1</label>
<input id="test"/>
<label id="label2" for="test">Label 2</label>
JavaScript
window.addEventListener("DOMContentLoaded", function() {
const input = document.getElementById("test");
for(var i = 0; i < input.labels.length; i++) {
console.log(input.labels[i].textContent); // "Label 1" and "Label 2"
}
});
规范
Specification | Status | Comment |
---|---|---|
HTML Living Standard labels |
Living Standard | No change |
HTML5 labels |
Recommendation | Initial definition |
浏览器兼容
BCD tables only load in the browser
本页兼容表是由结构化数据生成的。如果你乐意为数据做贡献,请点击https://github.com/mdn/browser-compat-data 给我们发送请求。