首页 > 其他 > 详细

如何使input为只读状态

时间:2014-06-28 15:31:25      阅读:325      评论:0      收藏:0      [点我收藏+]

关于input元素  大家在平时都会经常用到。

但有时候可能就会有一些要求,比如说只读状态。

可能有些人就觉的这还不简单,直接readyonly就OK了,

是的   确实如此,但本人还是要归纳总结一下几个方法:

一、设置disabled属性  为true

<input type="text" value="方法1 disabled=true" disabled=true> 

 

二、直接添加disabled

<input type="text" value="方法2 disabled" disabled> 

 

三、添加readyonly
<input type="text" value="方法3 readonly" readonly> 

 

四、获得焦点的时候让它失去焦点
<input type="text" value=‘方法4 onFocus="this.blur()"‘ onFocus="this.blur()">

 

如何使input为只读状态,布布扣,bubuko.com

如何使input为只读状态

原文:http://www.cnblogs.com/hx1992/p/3798136.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!