如何为HTML select元素设置默认消息值?

时间:2014-10-03 15:10:14

标签: html5 css3 html-select

我知道有一个答案可以设置HTML select下拉元素的默认值。

<select>
     <option value="" selected="selected">an option value</option>
</select>

但是,我需要占位符不是一个可选的&#39;值。例如&#39;选择一个类别&#39;。怎么办呢?

1 个答案:

答案 0 :(得分:1)

只需禁用默认选项:

<select>
    <option value="" selected="selected" disabled="disabled">an option value</option>
    <option value="">first choosable option</option>
</select>