你可以尝试这样的事情:
<select
style="width:40px;"
onblur="this.style.width='40px';"
onfocus="this.style.width='auto';"
onChange="this.style.width='40px';"
>
<option>A Cat</option>
<option>B Dog</option>
<option>C Horse</option>
<option>D Hippopotamus</option>
</select>
http://jsfiddle.net/VGfgW/