首页 > 代码库 > HTML中Text设为不可编辑,不可用
HTML中Text设为不可编辑,不可用
1.readonly = "true"
<input type="text" readonly = "true"/>
2.disabled = "true"
<input type="text" disabled = "true"/>
3.当focus触发时,立刻blur,使它无法获得焦点。
<input type="text" onfocus="this.blur()" readonly="true"/>
readonly/disabled都可以不跟参数,默认都是不可编辑;disabled="true"文本不可提交,readonly="true"可被提交。
本文出自 “Shows technology” 博客,请务必保留此出处http://wangzhijun.blog.51cto.com/9660708/1604078
HTML中Text设为不可编辑,不可用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。