8.9.2 单选按钮或多选按钮
Bootstrap
通过.btn-group
样式可实现按钮组,如果在按钮组上再添加data-toggle="buttons"
属性即可实现单选按钮
或多选按钮
。
实现单选按钮
例如如下代码实现了单选按钮。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| <!DOCTYPE html> <html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title> 单选按钮 </title> <link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="../bootstrap/css/bootstrap-theme.min.css"> <script type="text/javascript" src="../jquery-3.1.1.js"></script> <script type="text/javascript" src="../bootstrap/js/bootstrap.min.js"></script> </head>
<body> <div class="container"> <div class="btn-group" data-toggle="buttons"> <label class="btn btn-primary active"> <input type="radio" autocomplete="off" checked> HTML 5(默认选中) </label> <label class="btn btn-primary"> <input type="radio" autocomplete="off"> Bootstrap </label> <label class="btn btn-primary"> <input type="radio" autocomplete="off"> AngularJS </label> </div> </div> </body>
</html>
|
在这段代码中定义了一个<div>
元素,并为该元素指定了class="btn-group"
,这表明该元素用于包含一组按钮
。此外还为该元素指定了data-toggle="buttons"
,这意味着该<div>
元素用于包含一组单选按钮或多选按钮
。
在<div>
元素中定义了3 个单选框,如此便形成了单选按钮组。
实现多选按钮
下面的代码实现了多选按钮。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <!DOCTYPE html> <html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title> 多选按钮 </title> <link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="../bootstrap/css/bootstrap-theme.min.css"> <script type="text/javascript" src="../jquery-3.1.1.js"></script> <script type="text/javascript" src="../bootstrap/js/bootstrap.min.js"></script> </head>
<body> <div class="container"> <div class="btn-group" data-toggle="buttons"> <label class="btn btn-primary active"> <input type="checkbox" autocomplete="off" checked> HTML 5(默认选中) </label> <label class="btn btn-primary"> <input type="checkbox" autocomplete="off"> Bootstrap </label> <label class="btn btn-primary"> <input type="checkbox" autocomplete="off"> AngularJS </label> </div> </div> </body>
</html>
|
在这段代码中定义了一个<div>
元素,并为该元素指定了class="btn-group"
,这表明该元素用于包含一个按钮组。此外还为该元素指定了data-toggle="buttons"
,这意味着该元素包含一组单选按钮或多选按钮。
在<div>
元素中定义了3个多选框,如此便形成多选按钮组。
原文链接: 8.9.2 单选按钮或多选按钮