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


HTML <label> form属性用法及代码示例


HTML <label>表单属性用于指定<label>元素可以包含一个或多个表单。

用法:

<label form="form_id"> 

属性值:它包含单个值form_id,该值包含值,即form_id,该值指定一个或多个label元素所属。此属性的值应为<form>元素的ID。


例:

<!DOCTYPE html>  
<html>  
    <head>  
        <title>  
            HTML label form Attribute  
        </title>  
    </head>  
      
    <body style = "text-align:center">  
          
        <h1 style = "color:green;">  
            GeeksforGeeks  
        </h1>  
          
        <h2>  
            HTML label form Attribute  
        </h2>  
          
        <form action="#" method="get" id="GFG_form"> 
            <!-- Starts label tag from here -->
            <label 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>  
        </form> 
          
        <label for="other" form="GFG_form">Other</label> 
    </body>  
      
</html>                    

输出:

支持的浏览器:<label>表单属性支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <label> form Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。