選択したアイテムの背景色を変更したいです。私はその青い色を意味します: http://img844.imageshack.us/img844/3200/c0b8e4b9ceac4122bc5668a.png
質問する
5084 次
1 に答える
1
この投稿を参考に、
現在、CSS はこの機能をサポートしていません。独自にビルドするか、DIV/CSS を使用してこの動作をエミュレートするプラグインを使用できます。
ただし、ここで確認できるJavascriptを使用して実現できます
var sel = document.getElementById('select_id');
sel.addEventListener('click', function(el){
var options = this.children;
for(var i=0; i < this.childElementCount; i++){
options[i].style.color = 'white';
}
var selected = this.children[this.selectedIndex];
selected.style.color = 'red';
}, false);
于 2013-01-05T05:01:01.097 に答える