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


HTML Label form用法及代碼示例


HTML DOM Label表單屬性用於返回對包含Label元素的表單的引用。它是隻讀屬性,成功時將返回一個表單對象。

用法:

labelObject.form

返回值:它返回一個包含標簽的引用,如果標簽不在表單中,則返回null。


例:

<!DOCTYPE html>  
<html> 
  
<head> 
    <title>DOM Label Form Property</title> 
  
    <style> 
        body { 
            font-size:20px; 
        } 
    </style> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green">GeeksforGeeks</h1> 
    <h2> HTML DOM Label Form Property</h2> 
  
    <form id="geeks"> 
  
        <!-- Starts label tag from here -->
        <label id="sudo" for="student"> 
            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="gfg"></p> 
    <script> 
        function myGeeks() { 
            var g = document.getElementById("sudo").form.id; 
            document.getElementById("gfg").innerHTML = g; 
        } 
    </script> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Label表單屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


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