.selected_aq{
background:#47D6EB !important;
color : #fff;
}
<select id="abc" multiple="multiple">
<option value="Customer 1" class="selected_aq">Customer 1</option>
<option value="Customer 1" class="selected_aq">Customer 1</option>
</select >
for (x=0;x<list.options.length;x++){
if (list.options[x].selected){
$(list.options[x]).addClass('selected_aq');
}
由于“多个”属性,背景颜色变为灰色,但仅适用于最后选择的“选项”。