目录

HTML DOM option 对象


选项对象

Option 对象表示 HTML <option> 元素。

访问选项对象

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

示例

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

提示:您还可以通过搜索来访问 Option 对象元素表格的集合,或选项下拉列表的集合。

创建选项对象

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

示例

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

选项对象属性

Property Description
defaultSelected Returns the default value of the selected attribute
disabled Sets or returns whether an option is disabled, or not
form Returns a reference to the form that contains the option
index Sets or returns the index position of an option in a drop-down list
label Sets or returns the value of the label attribute of an option in a drop-down list
selected Sets or returns the selected state of an option
text Sets or returns the text of an option
value Sets or returns the value of an option to be sent to the server

标准属性和事件

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


相关页面

HTML 参考:HTML <选项> 标签