目录

HTML DOM fieldset 对象


Fieldset 对象

Fieldset 对象表示 HTML <fieldset> 元素。

访问字段集对象

您可以使用 getElementById() 访问 <fieldset> 元素:

示例

var x = document.getElementById("myFieldset");
亲自试一试 »

提示:您还可以通过搜索来访问 Fieldset 对象元素表格的集合。

创建字段集对象

您可以使用 document.createElement() 方法创建 <fieldset> 元素:

示例

var x = document.createElement("FIELDSET");
亲自试一试 »

字段集对象属性

Property Description
disabled Sets or returns whether a fieldset is disabled, or not
form Returns a reference to the form that contains the fieldset
name Sets or returns the value of the name attribute of a fieldset
type Returns which type of form element the fieldset is

标准属性和事件

Fieldset 对象还支持标准特性事件


相关页面

HTML 教程:HTML 表单

HTML 参考:HTML <fieldset> 标签