我正在启动引导程序,所以请原谅我!我正在尝试从引导程序4创建“切换”(不知道名称是否正确)。我在文档中找不到有关如何执行此操作的任何线索。
我尝试创建一个“单选按钮组”,但是我在使用此方法时遇到了问题,并且仍然在我的按钮上看到单选圆圈。有没有更好的方法来实现这一目标?
答案 0 :(得分:1)
如果我正确理解:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-warning active">
<input type="radio" name="options" id="option1" autocomplete="off" checked> Active
</label>
<label class="btn btn-warning">
<input type="radio" name="options" id="option2" autocomplete="off"> Radio
</label>
<label class="btn btn-warning">
<input type="radio" name="options" id="option3" autocomplete="off"> Radio
</label>
</div>
答案 1 :(得分:0)
我实际上找到了答案!对于那些想看看它是什么样的人:
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-outline-primary btn-toggle active">
<input type="radio" name="options" id="option1" autocomplete="off" checked> 1
</label>
<label class="btn btn-outline-primary btn-toggle">
<input type="radio" name="options" id="option2" autocomplete="off"> 2
</label>
<label class="btn btn-outline-primary btn-toggle">
<input type="radio" name="options" id="option3" autocomplete="off"> 3
</label>
</div>