How to change the text color of first select option

后端 未结 6 909
我在风中等你
我在风中等你 2020-11-30 10:49

I have a select element which has several items. I want to change the color of its first item, but it seems the color only shows when you click on the select dropdown. What

6条回答
  •  南笙
    南笙 (楼主)
    2020-11-30 11:33

    You can do this by using CSS: JSFiddle

    HTML:

    
    

    CSS:

    select option:first-child { color:red; }
    

    Or if you absolutely need to use JavaScript (not adviced for this): JSFiddle

    JavaScript:

    $(function() {
        $("select option:first-child").addClass("highlight");
    });
    

    CSS:

    .highlight { color:red; }
    

提交回复
热议问题