我正在尝试做出这种行为。
当一个有一个列表框(或组合框)时,我的第一个元素(比如“选择一个”)应该有一个特定的样式。
使用此(测试)代码:
<style type="text/css">
.testX {font-style: italic;}
</style>
(...)
<select name="name" id="id">
<option class="testeX" selected="selected" value="#">
<p class="testX">Choose One</p>
</option>
<option value="TestValue">
TestValue
</option>
当我展开我的列表框时,我可以在 Firefox(但在 Chrome 中看不到)上看到这种行为,但是当我选择“选择一个”时,我的字段没有(斜体)样式。
我怎样才能做到这一点?是否可以仅使用 HTML、CSS 或我需要更多(如 jQuery)来做到这一点?
谢谢。