这是否有意义?还是有更好的方法呢?
我基本上需要一个第一个标签,显示为“选择价格”,并且不能直接选择,但在展开选择菜单(如optgroup标签)时显示.
<select> <option disabled="disabled" selected="selected">Select Price</option> <optgroup label="Gold"> <option>5.00</option> <option>10.00</option> </optgroup> </select>
见这jsFiddle demo.