DOM标签对象用于表示<label>元素。 Label元素由getElementById()访问。
属性:
- control:它用于返回标记的控件。
- form:它用于返回包含标签的表单的地址。
- htmlFor:它用于设置或返回标签的for属性的值。
用法:
document.getElementById("ID");
其中“id”是分配给“label”标签的ID。
示例1:
<!DOCTYPE html>
<html>
<head>
<title>DOM Label Object</title>
<style>
body {
font-size:20px;
}
</style>
</head>
<body style="text-align:center">
<h1 style="color:green">GeeksforGeeks</h1>
<h2>DOM Label Object</h2>
<form>
<!-- Starts label tag from here -->
<label for="student" id="GFG">
Student
</label>
<input type="radio"
name="Occupation"
id="student"
value="student">
<br>
<label for="business">
Business
</label>
<input type="radio"
name="Occupation"
id="business"
value="business">
<br>
<label for="other">
Other
</label>
<!-- Ends label tags here -->
<input type="radio"
name="Occupation"
id="other"
value="other">
</form>
<br>
<button onclick="myGeeks()">Submit</button>
<p id="sudo"></p>
<script>
function myGeeks() {
var g = document.getElementById("GFG").htmlFor;
document.getElementById("sudo").innerHTML = g;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例-2:可以使用document.createElement方法创建Label Object。
<!DOCTYPE html>
<html>
<head>
<title>DOM Label Object</title>
<style>
body {
font-size:20px;
}
</style>
</head>
<body style="text-align:center;">
<h1 style="color:green">GeeksforGeeks</h1>
<h2>DOM Label Object</h2>
<form id="GFG">
<input type="radio"
name="Occupation"
id="Student"
value="student">
</form>
<button onclick="myGeeks()">Submit</button>
<script>
function myGeeks() {
var g = document.createElement("LABEL");
var f = document.createTextNode("Student");
g.setAttribute("for", "Student");
g.appendChild(f);
document.getElementById("GFG").insertBefore(
g, document.getElementById("Student"));
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM标签对象支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML DOM Object用法及代码示例
- HTML Option label用法及代码示例
- HTML Label htmlFor用法及代码示例
- HTML Track label用法及代码示例
- HTML OptionGroup label用法及代码示例
- HTML Label form用法及代码示例
- HTML DOM HTML用法及代码示例
- HTML <label> form属性用法及代码示例
- HTML label属性用法及代码示例
- HTML <track> label属性用法及代码示例
- HTML <option> label属性用法及代码示例
- HTML <optgroup> label属性用法及代码示例
- HTML <label>用法及代码示例
- HTML DOM Input Week用法及代码示例
- HTML DOM Column用法及代码示例
- HTML DOM Del用法及代码示例
- HTML DOM Embed用法及代码示例
- HTML DOM Header用法及代码示例
- HTML DOM Footer用法及代码示例
- HTML DOM Span用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Label Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。