码迷,mamicode.com
首页 > Web开发 > 详细

HTML中Text设为不可编辑,不可用

时间:2015-01-15 01:52:54      阅读:781      评论:0      收藏:0      [点我收藏+]

标签: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

HTML中Text设为不可编辑,不可用

标签:readonly   text   disabled   不可编辑   

原文地址:http://wangzhijun.blog.51cto.com/9660708/1604078

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!