📌  相关文章
📜  如何指定标签所属的一种或多种形式?

📅  最后修改于: 2021-11-10 03:57:18             🧑  作者: Mango

在本文中,我们将学习如何指定标签所属的一个或多个表单。这可以用于标签在表单元素之外定义并且需要链接回表单的情况。

做法:我们将使用标签的form属性来指定标签所属的一个或多个表单。此属性接受标签所属表单的 id。下面的例子演示了这种方法。

示例 1:在此示例中,我们在 form 元素之外创建了 input 和 label 元素,并使用form属性来定义标签如何属于表单。

HTML

  
    
  
    

GeeksForGeeks

    

      How to specify one or more forms        the label belongs to?     

       
                    

           
    
    

      The "Last Name" label is not in the        

element but it is defined       as a part of form element.     

                    


HTML

  
    
  
    

GeeksForGeeks

    

       How to specify one or more forms        the label belongs to?     

       

First Form

                         

                

Second Form

    
                    

           
    

      The "Last Name" label is not in the

      element but it is defined       as a part of first form.     

                         

      The "City" label is not in the         element but it is defined as a       part of second form.     

                    


输出:

示例 2:在此示例中,我们有两种形式。姓氏是第一个元素的一部分,城市是第二个形式的一部分。我们使用form属性来定义两个标签所属的位置。

HTML


  
    
  
    

GeeksForGeeks

    

       How to specify one or more forms        the label belongs to?     

       

First Form

                         

                

Second Form

    
                    

           
    

      The "Last Name" label is not in the

      element but it is defined       as a part of first form.     

                         

      The "City" label is not in the         element but it is defined as a       part of second form.     

                    

输出: