Bootstrap3 多选和单选框(checkbox)
程序员文章站
2023-01-31 10:37:29
多选框(checkbox)用于选择列表中的一个或多个选项,而单选框(radio)用于从多个选项中只选择一个。
设置了 disabled 属性的单选或多选框都能被赋予合适的...
多选框(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),希望对大家有所帮助
上一篇: js生成随机颜色方法代码分享(三种)
推荐阅读
-
Bootstrap3 多选和单选框(checkbox)
-
Bootstrap3 内联单选和多选框
-
关于input checkbox是否选中判断(包含单选框和多选框)待完善
-
纯css3实现效果超级炫的checkbox复选框和radio单选框
-
一款纯css3实现简单的checkbox复选框和radio单选框
-
前端:HTML(三)---页面结构分析,iframe 内联框架,表单语法,单选框 radio,按钮和多选框
-
Bootstrap3 多选和单选框(checkbox)
-
Bootstrap3 内联单选和多选框
-
HTML复选框和单选框 checkbox和radio事件介绍_基础知识
-
select多选和checkbox复选的值在js和action中的展现形式