在本文中,我们将学习如何指定标签所属的一个或多个表单。这可以用于标签在表单元素之外定义并且需要链接回表单的情况。
做法:我们将使用标签的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
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
输出:
示例 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
输出: