select向下箭頭隱藏方法:
CSS{
appearance:none; -moz-appearance:none; -webkit-appearance:none; -ms-appearance:none;
}
先清除默認(rèn)樣式,再使用span標(biāo)簽去代替下拉箭頭樣式。
在IE下隱藏下來箭頭
css{
select::-ms-expand { display: none; };
}
使用JS切換選中狀態(tài)文字顏色與默認(rèn)狀態(tài)下文字顏色。
// select 默認(rèn)顏色與選中顏色切換 $('select').css('color','#999'); $('option').css('color','#323232'); $('select').change(function(){ var $selltem = $(this).val(); if($selltem == $(this).find('option:first').val()){ $(this).css('color','#999'); }else{ $(this).css('color','#323232'); } });
新聞熱點(diǎn)
疑難解答
圖片精選