當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Label用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Label Object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。