bootstrap 的表單控件狀態(禁用狀態)

Bootstrap框架的表單控件的禁用狀態和普通的表單禁用狀態實現方法是同樣的,在相應的表單控件上添加屬性「disabled」。 例子: <input class="form-control" type="text" placeholder="表單已禁用,不能輸入" disabled>框架

表單全禁用: 在Bootstrap框架中,若是fieldset設置了disabled屬性,整個域都將處於被禁用狀態。orm

<form role="form"> <fieldset disabled> <div class="form-group"> <label for="disabledTextInput">禁用的輸入框</label> <input type="text" id="disabledTextInput" class="form-control" placeholder="禁止輸入"> </div> 。。。input

相關文章
相關標籤/搜索