让html select支持readonly属性

刚刚碰到一个要为html select添加readonly属性的要求:

<select id="lstTest" onfocus="this.defaultIndex=this.selectedIndex;" onchange="this.selectedIndex=this.defaultIndex;">  
<option value="1">test1</option>  
<option value="2">test2</option>  
<option value="3" selected="selected">test3</option>  
<option value="4">test4</option>  
<option value="5">test5</option>  
</select> 

你可能感兴趣的:(readOnly)