HTML中Select不用Disabled实现ReadOnly的效果
更新时间:2008年04月07日 20:27:05 作者:
Disabled ReadOnly之家的联系
方法如下:
<select onbeforeactivate="return false" onfocus="this.blur()" onmouseover="this.setCapture()" onmouseout="this.releaseCapture()">
<option>1</option>
</select>
复制代码 代码如下:
<select onbeforeactivate="return false" onfocus="this.blur()" onmouseover="this.setCapture()" onmouseout="this.releaseCapture()">
<option>1</option>
</select>
相关文章
javascript中setAttribute()函数使用方法及兼容性
这篇文章主要介绍了javascript中setAttribute()函数使用方法及兼容性的相关资料,需要的朋友可以参考下2015-07-07
最新评论