HTML 選択の色を変更する必要があります。よく検索しましたが、IE で動作するサンプルが見つかりませんでした。では、IE で無効化された HTML Select 要素の色を変更できますか? css、javascript、または jquery のサンプルが必要です。これが私が試したことです。
<select disabled="disabled">
<option value="a">option A</option>
<option value="b">option B</option>
<option value="c">option C</option>
</select>
[disabled] {
color: #933;
background-color: #ffc;
}
select:disabled
{
border: solid 1px silver;
background-color: #F9F9F9;
color:blue;
}
[disabled] option {
background-color: #ffc; color: #933;
}