Change select box option background color

后端 未结 10 764
挽巷
挽巷 2020-11-22 08:55

I have a select box and I\'m trying to change the background color of the options when the select box has been clicked and shows all the options.

10条回答
  •  醉酒成梦
    2020-11-22 09:30

    Another option is to use Javascript:

    if (document.getElementById('selectID').value == '1') {
           document.getElementById('optionID').style.color = '#000';
    

    (Not as clean as the CSS attribute selector, but more powerful)

提交回复
热议问题