Bootstrap3 多选和单选框(checkbox)

2019-11-26,,,,,

多选框(checkbox)用于选择列表中的一个或多个选项,而单选框(radio)用于从多个选项中只选择一个。

设置了 disabled 属性的单选或多选框都能被赋予合适的样式。对于和多选或单选框联合使用的 <label> 标签,如果也希望将悬停于上方的鼠标设置为“禁止点击”的样式,请将 .disabled 类赋予 .radio、.radio-inline、.checkbox、.checkbox-inline 或 <fieldset>。

默认外观(堆叠在一起)

<div class="checkbox">
 <label>
 <input type="checkbox" value="">
 Option one is this and that—be sure to include why it's great
 </label>
</div>
<div class="checkbox disabled">
 <label>
 <input type="checkbox" value="" disabled>
 Option two is disabled
 </label>
</div>
<div class="radio">
 <label>
 <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
 Option one is this and that—be sure to include why it's great
 </label>
</div>
<div class="radio">
 <label>
 <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
 Option two can be something else and selecting it will deselect option one
 </label>
</div>
<div class="radio disabled">
 <label>
 <input type="radio" name="optionsRadios" id="optionsRadios3" value="option3" disabled>
 Option three is disabled
 </label>
</div>

以上所述是小编给大家介绍的Bootstrap3 多选和单选框(checkbox),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对北冥有鱼网站的支持!

您可能感兴趣的文章:

  • AngularJS折叠菜单实现方法示例
  • AngularJS动态菜单操作指令
  • angularjs+bootstrap菜单的使用示例代码
  • AngularJS实现树形结构(ztree)菜单示例代码
  • 实例详解AngularJS实现无限级联动菜单
  • AngularJs中Bootstrap3 datetimepicker使用实例
  • Bootstrap3 datetimepicker控件使用实例
  • 购物车前端开发(jQuery和bootstrap3
  • Bootstrap3制作搜索框样式的方法
  • AngularJS+Bootstrap3多级导航菜单的实现代码

《Bootstrap3 多选和单选框(checkbox).doc》

下载本文的Word格式文档,以方便收藏与打印。