目录

HTML DOM label 对象


标签对象

Label 对象表示 HTML <label> 元素。

访问标签对象

您可以使用 getElementById() 访问 <label> 元素:

示例

var x = document.getElementById("myLabel");
亲自试一试 »

创建标签对象

您可以使用 document.createElement() 方法创建 <label> 元素:

示例

var x = document.createElement("LABEL");
亲自试一试 »

标签对象属性

Property Description
control Returns the labeled control
form Returns a reference to the form that contains the label
htmlFor Sets or returns the value of the for attribute of a label

标准属性和事件

Label 对象还支持标准特性事件


相关页面

HTML 教程:HTML 表单

HTML 参考:HTML <标签> 标签