select 的readonly效果

HTML中Select不用Disabled实现ReadOnly的另类实现. 

<select onbeforeactivate="return false" onfocus="this.blur()" onmouseover="this.setCapture()" onmouseout="this.releaseCapture()">
<option>1</option>
</select>
原文地址:https://www.cnblogs.com/huqingyu/p/718446.html