Bootstrap 5 复选框和单选按钮
Bootstrap 2023-08-10 09:26:55小码哥的IT人生shichen
Bootstrap 5 复选框和单选按钮
复选框
如果您希望用户从预设选项列表中选择任意数量的选项,则请使用复选框。
示例代码:
<div class="form-check">
<input class="form-check-input" type="checkbox" id="check1" name="option1" value="something" checked>
<label class="form-check-label">选项 1</label>
</div>
完整实例【亲自试一试】:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-3">
<h2>复选框</h2>
<p>如需设置复选框的样式,请使用带有 .form-check 类的容器元素,并将 .form-check-label 添加到标签,并将 .form-check-input 添加到 type="checkbox" 的输入控件中。</p>
<p>下面的表格包含三个复选框。默认选中第一个选项,禁用最后一个选项:</p>
<form action="/demo/demo_form.php">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="check1" name="option1" value="something" checked>
<label class="form-check-label" for="check1">选项 1</label>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="check2" name="option2" value="something">
<label class="form-check-label" for="check2">选项 2</label>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" disabled>
<label class="form-check-label">选项 3</label>
</div>
<button type="submit" class="btn btn-primary mt-3">提交</button>
</form>
</div>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
例子解释
如需设置复选框样式,请使用 class="form-check"
的包装元素,来确保标签和复选框有适当的外边距。
然后,将 .form-check-label
类添加到标签元素,并将 .form-check-input
添加到 .form-check
容器内,以正确设置复选框的样式。
如果您希望默认选中复选框,请使用 checked
属性。
单选按钮
如果您想限制用户只能从预设选项列表中选择其中之一,则使用单选按钮。
示例代码:
<div class="form-check">
<input type="radio" class="form-check-input" id="radio1" name="optradio" value="option1" checked>选项 1
<label class="form-check-label" for="radio1"></label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" id="radio2" name="optradio" value="option2">选项 2
<label class="form-check-label" for="radio2"></label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" disabled>选项 3
<label class="form-check-label"></label>
</div>
完整实例【亲自试一试】:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-3">
<h2>单选按钮</h2>
<p>下面的表单包含三个单选按钮。默认选中第一项,禁用最后一项:</p>
<form action="/demo/demo_form.php">
<div class="form-check">
<input type="radio" class="form-check-input" id="radio1" name="optradio" value="option1" checked>
<label class="form-check-label" for="radio1">选项 1</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" id="radio2" name="optradio" value="option2">
<label class="form-check-label" for="radio2">选项 2</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" disabled>
<label class="form-check-label">选项 3</label>
</div>
<button type="submit" class="btn btn-primary mt-3">提交</button>
</form>
</div>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
拨动开关
如果您希望将复选框设置为切换开关的样式,请将 .form-switch
类与 .form-check
容器一起使用:
示例代码:
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="mySwitch" name="darkmode" value="yes" checked>
<label class="form-check-label" for="mySwitch">深色模式</label>
</div>
完整实例【亲自试一试】:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-3">
<h2>拨动开关</h2>
<p>请尝试在切换和不切换开关的情况下提交表单。</p>
<form action="/demo/demo_form.php">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="mySwitch" name="darkmode" value="yes" checked>
<label class="form-check-label" for="mySwitch">深色模式</label>
</div>
<button type="submit" class="btn btn-primary mt-3">提交</button>
</form>
</div>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html