Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML form 属性


定义和用法

The form attribute specifies the form the element belongs to.

此属性的值必须等于同一文档中 <form> 元素的 id 属性。


适用范围

The form attribute can be used on the following elements

元素 属性
<button> form
<fieldset> form
<input> form
<label> form
<meter> form
<object> form
<output> form
<select> form
<textarea> form

示例

按钮示例

位于表单外部(但仍是表单的一部分)的按钮

<form action="/action_page.php" method="get" id="form1">
  姓氏:<input type="text" name="fname"><br>
  姓氏:<input type="text" name="lname"><br>
</form>

<button type="submit" form="form1" value="Submit">提交</button>
尝试一下 »

字段集示例

位于表单外部(但仍是表单的一部分)的 <fieldset> 元素

<form action="/action_page.php" method="get" id="form1">
  你最喜欢的颜色是什么?<input type="text" name="fav_color"><br>
  <input type="submit">
</form>

<fieldset form="form1">
  姓名:<input type="text" name="username"><br>
  电子邮件:<input type="text" name="usermail"><br>
</fieldset>
尝试一下 »

输入示例

位于 HTML 表单外部(但仍是表单的一部分)的输入字段

<form action="/action_page.php" id="form1">
  姓氏:<input type="text" name="fname"><br>
  <input type="submit" value="Submit">
</form>

姓氏:<input type="text" name="lname" form="form1">
尝试一下 »

标签示例

位于表单外部(但仍是表单的一部分)的 <label> 元素

<form action="/action_page.php" id="form1">
  <input type="radio" id="html" name="fav_language" value="HTML"><br>
  <input type="radio" id="css" name="fav_language" value="CSS">
  <label for="css">CSS</label><br>
  <input type="radio" id="javascript" name="fav_language" value="JavaScript">
  <label for="javascript">JavaScript</label><br><br>
  <input type="submit" value="Submit">
</form>

<label for="html">HTML</label>
尝试一下 »

计量器示例

位于表单外部(但仍是表单的一部分)的 <meter> 元素

<form action="/action_page.php" method="get" id="form1">
  姓氏:<input type="text" name="fname"><br>
  <input type="submit" value="Submit">
</form>

<meter form="form1" name="x1" min="0" low="40" high="90" max="100" value="95"></meter>
尝试一下 »

对象示例

位于表单外部(但仍是表单的一部分)的 <object> 元素

<form action="/action_page.php" id="form1">
  姓氏:<input type="text" name="fname"><br>
  <input type="submit" value="Submit">
</form>

<object data="helloworld.swf" height="400" width="400" form="form1" name="obj1"></object>
尝试一下 »

输出示例

位于表单外部(但仍是表单的一部分)的 <output> 元素

<form action="/action_page.php" id="numform"
oninput="x.value=parseInt(a.value)+parseInt(b.value)">0
<input type="range" id="a" name="a" value="50">100
+<input type="number" id="b" name="b" value="50">
<br><br>
<input type="submit">
</form>

<output form="numform" name="x" for="a b"></output>
尝试一下 »

选择示例

位于表单外部(但仍是表单的一部分)的下拉列表

<form action="/action_page.php" id="carform">
  姓氏:<input type="text" name="fname">
  <input type="submit">
</form>

<select name="carlist" form="carform">
  <option value="volvo">沃尔沃</option>
  <option value="saab">萨博</option>
  <option value="opel">欧宝</option>
  <option value="audi">奥迪</option>
</select>
尝试一下 »

文本区域示例

位于表单外部(但仍是表单的一部分)的文本区域

<form action="/action_page.php" id="usrform">
  姓名:<input type="text" name="usrname">
  <input type="submit">
</form>

<textarea name="comment" form="usrform">在此处输入文本...</textarea>
尝试一下 »

浏览器支持

The form attribute has the following browser support for each element

元素
button 10.0 16.0 4.0 5.1 9.5
fieldset
input 5.1 10.6
label
meter 不支持 不支持 不支持 不支持 不支持
object 不支持 不支持 不支持 不支持 不支持
output 不支持 不支持 不支持 不支持 不支持
select
textarea 11.0

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.