1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
---
title: <option>
slug: Web/HTML/Element/option
tags:
- Element
- HTML表单
- 元素
- 参考
- 表单
- 选择
translation_of: Web/HTML/Element/option
---
<p id="概要">{{HTMLRef}}</p>
<p><strong>HTML元素<em> </em><code><option></code><em> </em></strong> 用于定义在 {{HTMLElement("select")}}, {{HTMLElement("optgroup")}} 或 {{HTMLElement("datalist")}} 元素中包含的项。<code><option></code> 可以在弹出窗口和 HTML 文档中的其他项目列表中表示菜单项。</p>
<p>{{EmbedInteractiveExample("pages/tabbed/option.html", "tabbed-standard")}}</p>
<ul class="htmlelt">
<li><dfn><a href="/en-US/docs/Web/HTML/Content_categories" title="HTML/Content_categories">内容类别</a></dfn> 无</li>
<li><dfn>允许的内容</dfn>带有最终转义字符(例如 <code>&eacute;</code>)的文本</li>
<li><dfn>标记省略</dfn> 开始标记是必需的。如果此元素紧接着是另一个 <code><option></code> 元素或{{HTMLElement("optgroup")}}, 或者父元素没有其他内容, 则结束标记是可选的。</li>
<li><dfn>Implicit ARIA role</dfn>{{ARIARole("option")}}</li>
<li><dfn>Permitted ARIA roles</dfn>No <code>role</code> permitted</li>
<li><dfn>允许的父元素</dfn> A {{HTMLElement("select")}}, an {{HTMLElement("optgroup")}} or a {{HTMLElement("datalist")}} element.</li>
<li><dfn>DOM 接口</dfn> {{domxref("HTMLOptionElement")}}</li>
</ul>
<h2 id="属性">属性</h2>
<p><span style="line-height: 21px;">此元素包括</span><a href="/en-US/docs/Web/HTML/Global_attributes" style="line-height: 21px;" title="HTML/Global attributes">全局属性</a>。</p>
<dl>
<dt>{{htmlattrdef("disabled")}}</dt>
<dd>如果设置了这个布尔属性,则该选项不可选。浏览器通常会将这种控件显示为灰色,并且不再接受任何浏览器事件,例如鼠标点击或者焦点相关的事件。如果这个属性没有设置,而这个元素的其中一个父元素是被禁用的 {{HTMLElement("optgroup")}} 元素,则这个元素仍然是禁用的 。</dd>
<dt>{{htmlattrdef("label")}}</dt>
<dd>这个属性是用于表示选项含义的文本。如果 <code><strong>label</strong></code> 属性没有定义,它的值就是元素文本内容。</dd>
<dt>{{htmlattrdef("selected")}}</dt>
<dd>这个布尔属性存在时表明这个选项是否一开始就被选中。如果 <code><option></code> 元素是 {{HTMLElement("select")}} 元素的子元素,并且 {{HTMLElement("select")}} 元素的 {{htmlattrxref("multiple", "select")}} 属性没有设置,则 {{HTMLElement("select")}} 元素中只有一个 <code><option></code> 元素可以拥有 <code>selected</code> 属性。</dd>
<dt>{{htmlattrdef("value")}}</dt>
<dd>这个属性的值表示该选项被选中时提交给表单的值。如果省略了这个属性,值就从选项元素的文本内容中获取。</dd>
</dl>
<h2 id="示例">示例</h2>
<p>参见 {{HTMLElement("select")}} 示例。</p>
<h2 id="Specifications" name="Specifications">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'the-button-element.html#the-option-element', '<option>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'forms.html#the-option-element', '<option>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'interact/forms.html#h-17.6', '<option>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容性</h2>
<p>{{Compat("html.elements.option")}}</p>
<h2 id="另见">另见</h2>
<ul>
<li>其它表单相关的元素: {{HTMLElement("form")}}, {{HTMLElement("legend")}}, {{HTMLElement("label")}}, {{HTMLElement("button")}}, {{HTMLElement("select")}}, {{HTMLElement("datalist")}}, {{HTMLElement("optgroup")}}, {{HTMLElement("fieldset")}}, {{HTMLElement("textarea")}}, {{HTMLElement("keygen")}}, {{HTMLElement("input")}}, {{HTMLElement("output")}}, {{HTMLElement("progress")}} 和 {{HTMLElement("meter")}}。</li>
</ul>
|