首页 >web前端 >html教程 >html中实现input文本框不可编辑的方法

html中实现input文本框不可编辑的方法

黄舟
黄舟原创
2017-10-27 10:18:413095浏览

有时候,我们希望表单中的文本框是只读的,让用户不能修改其中的信息,

如使input text的内容,中国两个字不可以修改有时候,我们希望表单中的文本框是只读的,让用户不能修改其中的信息,

如使9b1f80160f620af8e6e1358ef4184fda 的内容,"中国"两个字不可以修改。实现的方式归纳一下,有如下几种。 

方法1: onfocus=this.blur() 当鼠标放不上就离开焦点

<input type="text" name="input1" value="中国" onfocus=this.blur()>

方法2:readonly 

  我喜欢用这个,能防止修改内容,

 copy后台还能够接受传值,同其他输入的数据一起保存到数据库

<li class="l1"><span>项目名称</span><span>  </span></li>
<li class="l2"><input  name="entryName" id="entryName"
style="color: #444"  type="text" value="邢台县“群众办事不出村”政务服务平台扩建项目" readonly="true"></li>
<input type="text" name="input1" value="中国" readonly>   
<input type="text" name="input1" value="中国" readonly="true">

方法3: disabled   

<input type="text" name="input1" value="中国" disabled="true">

完整的例子:

<input name="ly_qq" type="text" tabindex="2" onMouseOver="this.className=&#39;input_1&#39;" onMouseOut="this.className=&#39;input_2&#39;" 
value="123456789" disabled="true" readOnly="true" />

disabled="true" 此果文字会变成灰色,不可编辑。 
readOnly="true" 文字不会变色,也是不可编辑的
css屏蔽输入:

<input style="ime-mode: disabled">

有两种方法:

第一:disabled="disabled"这样定义之后被禁用的 input 元素既不可用,也不可点击。

第二:readonly="readonly" 只读字段是不能修改的。不过,用户仍然可以使用 tab 键切换到该字段,还可以选中或拷贝其文本;

以上是html中实现input文本框不可编辑的方法的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn