标签:readonly text disabled 不可编辑
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
标签:readonly text disabled 不可编辑
原文地址:http://wangzhijun.blog.51cto.com/9660708/1604078