search
HomeWeb Front-endHTML TutorialBootstrap之表单控件状态_html/css_WEB-ITnose

Bootstrap中的表单控件状态主要有三种:焦点状态,禁用状态,验证状态。

 

一、焦点状态:该状态告诉用户可输入或选择东西

焦点状态通过伪类“:focus”以实现。

bootstrap.css相应源码:

.form-control:focus {    border-color: #66afe9;    outline: 0;   //删除了outline的默认样式    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);  //添加了阴影效果    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);}

使用方法:给控件添加类名“form-control”。

eg:

<input class="form-control" type="text" placeholder="不是焦点状态下效果"><input class="form-control" type="text" placeholder="焦点状态下效果">

效果图如下所示:(焦点状态下为蓝色边框效果)

焦点状态下,file、radio、checkbox控件的效果与普通的input空间不完全一样,因为bootstrap对它们做了特殊处理。

bootstrap.css相应源码:

input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus {outline: thin dotted;outline: 5px auto -webkit-focus-ring-color;outline-offset: -2px;}

        

<strong>二、禁用状态:</strong>该状态告诉用户不可以输入或选择东西

禁用状态是通过在表单控件上添加"disabled"属性以实现。
bootstrap.css相应源码:

.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control {    cursor: not-allowed;    background-color: #eee;    opacity: 1;}

使用方法:在需要禁用的表单控件上加上"diabled"属性即可。
eg:

<input class="form-control" type="text" placeholder="不是焦点状态下效果"><input class="form-control" type="text" placeholder="表单已禁用,不能输入"  disabled>

效果图如下所示:

说明:禁用状态下控件背景色为灰色,且手型变为不准输入的形状,若表单控件不使用类名"form-control",则禁用的控件只有一个不准输入的手型。
PS:在Bootstrap中,若fieldset设置了"disabled"属性,则整个域都处于被禁用状态。
eg:

 1 <form role="form"> 2     <fieldset disabled> 3         <div class="form-group"> 4             <label for="disabledTextInput">禁用的输入框</label> 5             <input type="text" id="disabledTextInput" class="form-control" placeholder="禁止输入"> 6         </div> 7         <div class="form-group"> 8             <label for="disabledSelect">禁用的下拉框</label> 9             <select id="disabledSelect" class="form-control">10                 <option>不可选择</option>11             </select>12         </div>13         <div class="checkbox">14             <label>15                 <input type="checkbox">无法选择16             </label>17         </div>18         <button type="submit" class="btnbtn-primary">提交</button>19     </fieldset>20 </form>

效果如下图所示:

PS:对于一个禁用的域,若legend中有输入框,则此输入框是无法被禁用的。
eg:

 1 <form role="form"> 2     <fieldset disabled> 3         <legend><input type="text" class="form-control" placeholder="我没被禁用" /></legend> 4         <div class="form-group"> 5             <label for="disabledTextInput">禁用的输入框</label> 6             <input type="text" id="disabledTextInput" class="form-control" placeholder="禁止输入"> 7         </div> 8         <div class="form-group"> 9             <label for="disabledSelect">禁用的下拉框</label>10             <select id="disabledSelect" class="form-control">11                 <option>不可选择</option>12             </select>13         </div>14         <div class="checkbox">15             <label>16                 <input type="checkbox">无法选择17             </label>18         </div>19         <button type="submit" class="btnbtn-primary">提交</button>20   </fieldset> 21 </form>

效果图如下所示:

<strong>三、验证状态:</strong>该状态告诉用户,他们的操作是否正确
在Bootstrap中提供3种验证状态样式:

① .has-success : 成功状态(绿色)

② .has-error : 错误状态(红色)

③ .has-warning : 警告状态(黄色)

使用方法:在form-group容器上添加对应的状态类名即可。

eg:

 1 <form role="form"> 2     <div class="form-group has-success"> 3         <label class="control-label" for="inputSuccess1">成功状态</label> 4         <input type="text" class="form-control" id="inputSuccess1" placeholder="成功状态" > 5     </div> 6     <div class="form-group has-warning"> 7         <label class="control-label" for="inputWarning1">警告状态</label> 8         <input type="text" class="form-control" id="inputWarning1" placeholder="警告状态"> 9     </div>10     <div class="form-group has-error">11         <label class="control-label" for="inputError1">错误状态</label>12         <input type="text" class="form-control" id="inputError1" placeholder="错误状态">13     </div>14 </form>

说明:从效果可看出,三种样式除了颜色不同外,效果都一样。
在Bootstrap的表单验证中,不同状态会提供不同的icon,如成功是个对号"√",错误是个叉号"&times;"等。
若想让表单在不同状态下显示对应的icon,则只需在对应状态下添加类名"has-feedback"。
PS:类名"has-feedback"要与"has-error"、"has-warning"、"has-success"配合使用。
eg:

 1 <form role="form"> 2     <div class="form-group has-success has-feedback"> 3         <label class="control-label" for="inputSuccess">成功状态</label> 4         <input type="text" class="form-control" id="inputSuccess" placeholder="成功状态" > 5         <span class="glyphicon glyphicon-ok form-control-feedback"></span> 6     </div> 7     <div class="form-group has-warning has-feedback"> 8         <label class="control-label" for="inputWarning">警告状态</label> 9         <input type="text" class="form-control" id="inputWarning" placeholder="警告状态" >10         <span class="glyphicon glyphicon-warning-sign form-control-feedback"></span>11   </div> 12   <div class="form-group has-error has-feedback">13         <label class="control-label" for="inputError">错误状态</label>14         <input type="text" class="form-control" id="inputError" placeholder="错误状态" >15         <span class="glyphicon glyphicon-remove form-control-feedback"></span>16   </div> 17 </form>

效果如下所示:

说明:从效果图中可看出,图标都居右。
注:Bootstrap中的图标都是使用@face-face来制作,且必须在表单中添加个span元素来实现。
eg:

<span class="glyphicon glyphicon-remove form-control-feedback"></span>

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.