目录

HTML DOM optgroup 对象


选项组对象

OptionGroup 对象表示 HTML <optgroup> 元素。

访问 OptionGroup 对象

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

示例

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

创建选项组对象

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

示例

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

OptionGroup 对象属性

Property Description
disabled Sets or returns whether an option-group is disabled, or not
label Sets or returns the value the label attribute of an option-group

标准属性和事件

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


相关页面

HTML 参考:HTML <optgroup> 标签