当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。