7.4.5 多按钮
Bootstrap
不允许在输入框组的单独一侧同时添加多个附加元素,但如果我们将多个按钮包裹在同一个附加元素内
,这样即可实现在输入框组的单独一侧同时添加多个附加按钮。
程序示例
例如如下代码。
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| <!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"> <style type="text/css"> .container>div { margin-bottom: 10px; } </style> </head>
<body> <div class="container"> <div class="input-group"> <input type="text" class="form-control" id="a"> <div class="input-group-btn"> <button type="button" class="btn btn-primary"> <span class="glyphicon glyphicon-align-left" aria-label="左对齐"></span> </button> <button type="button" class="btn btn-primary"> <span class="glyphicon glyphicon-align-right" aria-label="右对齐"></span> </button> </div> </div> <div class="input-group"> <div class="input-group-btn"> <button type="button" class="btn btn-info"> <span class="glyphicon glyphicon-align-center" aria-label="居中对齐"></span> </button> <button type="button" class="btn btn-info"> <span class="glyphicon glyphicon-align-justify" aria-label="两端对齐"></span> </button> </div> <input type="text" class="form-control" id="b"> </div> </div> <script type="text/javascript" src="../jquery-3.1.1.js"></script> <script type="text/javascript" src="../bootstrap/js/bootstrap.min.js"></script> </body>
</html>
|
只要先定义一个<div class="input-group-btn">
元素,接下来即可在该元素内添加多个按钮,如此就可以在输入框组中添加多个按钮了。
原文链接: 7.4.5 多按钮