Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以将标签元素与选择一起使用吗?
我看到的大多数地方都只有输入元素的标签示例。
标准对标签关联有什么看法?
它是有效的 HTML 标记吗?
<label for="id_select"> Options </label> <select id="id_select" autofocus="true"> <option value="1"> Option1 </option> <option value="2"> Option2 </option> </select>
是的,它是有效的并且工作正常。
此属性明确地将正在定义的标签与另一个控件相关联。
http://www.w3.org/TR/html401/interact/forms.html#h-17.9.1