在生活中,很多人都不知道input不允许输入值_input不可编辑是什么意思,其实他的意思是非常简单的,下面就是小编搜索到的input不允许输入值_input不可编辑相关的一些知识,我们一起来学习下吧!
(资料图片仅供参考)
1、在HTML中制作表单input不可编辑的方法。有时,我们希望表单中的文本框是只读的,这样用户就不能修改其中的信息。比如输入type=" text " name=" input 1 " value=" China ",那么" China "这个词就不能修改。总而言之,有几种方法可以实现input不可编辑的方法
2、input不可编辑,方法1:focus=this.blur()在鼠标放不起来的时候离开焦点。
3、type=" text " name=" input 1 " value=" China " onfocus=this . blur()
4、input不可编辑,方法2:只读
5、type=" text " name=" input 1 " value=" China " readonly
6、type=" text " name=" input 1 " value=" China " readonly=" true "
7、方法3:已禁用
8、type=" text " name=" input 1 " value=" China " disabled=" true "
9、3360的完整示例
10、input name=" ly _ QQ " type=" text " tabindex=" 2 " on mouseover=" this . class name=" input _ 1 " " on mouseout=" this . class name=" input _ 2 " " value=" 123456789 " disabled=" true " readOnly=" true "/
11、Disabled="true "此处的文本将变成灰色,input不可编辑
12、ReadOnly="true "文本不改变颜色,不能编辑。
13、Css屏蔽输入:输入样式=“禁用输入法模式3360”
14、input不可编辑有两个方法:第一,disabled="disabled "。在这个定义之后,禁用的输入元素既不可用也不可点击。第二:readonly="readonly "只读字段不能修改。但是,用户仍然可以使用tab键切换到该字段,并选择或复制其文本。
本文今天讲解到此结束,希望对你有所帮助。