html中让input标签只读不可编辑的方法
方法1:onfocus=this.blur()
<input type="text" name="input1" value="晓艺" onfocus=this.blur() >
方法2:readonly
<input type="text" name="input1" value="晓艺" readonly >
<input type="text" name="input1" value="晓艺" readonly="true" >
方法3:disabled
<input type="text" name="input1" value="晓艺" disabled >
我的GitHub地址: https://github.com/heizemingjun
我的博客园地址: http://www.cnblogs.com/chenmingjun
我的蚂蚁笔记博客地址: http://blog.leanote.com/chenmingjun
Copyright ©2018 黑泽明军
【转载文章务必保留出处和署名,谢谢!】