HTML实现文本框只读不能修改其中的内容
网络 2017-10-24 2367
废话不多说了,直接给大家贴代码了,具体代码如下所示:
1 2 3 4 5 6 7 | <!--方法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="true"> |
上一篇:申请代开发票的几种情形
下一篇:HTML网页中插入视频的方法小结