我可以将label元素与select一起使用吗?

问题描述 投票:19回答:1

我可以将label元素与select一起使用吗?

大多数地方,我只看到带有输入元素的标签示例。

关于标签关联的标准怎么说?

这是有效的HTML标记吗?

<label for="id_select"> Options </label>
<select id="id_select" autofocus="true">
  <option value="1"> Option1 </option>
  <option value="2"> Option2 </option>
</select>
html label html-select w3c-validation
1个回答
24
投票

是,它有效并且可以正常工作。

此属性将要定义的标签与另一个控件明确关联。

http://www.w3.org/TR/html401/interact/forms.html#h-17.9.1

© www.soinside.com 2019 - 2024. All rights reserved.