$(document).ready(function(){
$("#keyword_select").mouseover(function(){
$("#keyword_select").css("height","200px","background-image","none").show(1000);
});
});
$(document).ready(function(){
$("#keyword_select").mouseout(function(){
$("#keyword_select").css("height","20px").show(1000);
});
});
css
#keyword_select {
height:23px;
width:200px;
background-image:url(ddl.jpg);
background-position:right;
background-repeat:no-repeat;
}
和html
<select id=#keyword_select multiple="multiple">
<option> first image </option>
<option> second image</option>
</select>