bootstrap input不可编辑的实现方法
bootstrap input不可编辑的实现方法:首先打开相应的代码文件;然后为input输入框设置disabled属性,其语句如“placeholder="Disabled input here..." disabled”。
本教程操作环境:Windows7系统、bootsrap3.3.7版,Dell G3电脑。
推荐:《bootstrap视频教程》《css视频教程》
bootstrap input不可编辑
在Bootstrap中,为input输入框设置 disabled 属性可以禁止其与用户有任何交互(焦点、输入等)。被禁用的输入框颜色更浅,并且还添加了 not-allowed 鼠标状态。
<input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled>
效果图:
disabled 属性
disabled 属性是一个布尔属性。
disabled 属性规定应该禁用的 <input> 元素。
被禁用的 input 元素是无法使用和无法点击的。
disabled 属性进行设置,使用户在满足某些条件时(比如选中复选框,等等)才能使用 <input> 元素。然后,可使用 JavaScript 来删除 disabled 值,使该<input> 元素变为可用的状态。
提示:表单中被禁用的 <input> 元素不会被提交。
注意:disabled 属性不适用于 <input type="hidden">。
以上就是bootstrap input不可编辑的实现方法的详细内容,更多请关注海外IDC网其它相关文章!
【本文来自:日本服务器 http://www.558idc.com/jap.html 复制请保留原URL】