最新的Web開發教程
 

HTML <fieldset> name Attribute

<HTML <fieldset>標籤

一個<fieldset>name屬性:

<fieldset name="personalia">
  Name: <input type="text"><br>
  Email: <input type="text"><br>
</fieldset>
試一試»

定義和用法

name屬性指定一個字段的名稱。

name屬性用來引用元素在JavaScript,或者一個表單提交後引用表單數據。


瀏覽器支持

屬性
name 不支持

HTML 4.01和HTML5之間的差異

name屬性是新換的<fieldset>在HTML5標籤。


句法

<fieldset name="text">

屬性值

描述
name 指定字段集的名稱

<HTML <fieldset>標籤