Bootstrap 4 切换/单选按钮组

9

我刚开始学习Bootstrap,请谅解我的新手状态!我正在尝试从Bootstrap 4中创建一个“切换”(不知道名称是否正确)。我在文档中找不到如何实现这个功能的线索。

Toggle button

我尝试创建一个“单选按钮组”,但使用这种方法时出现了问题,仍然可以看到按钮上的单选圆圈。有更好的方法来实现这个吗?


展示你尝试过的代码 - Nisharg Shah
2个回答

14

如果我理解得正确:

<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>

请查看复选框和单选按钮文档。


谢谢你的回答,我实际上在文档中找到了它。第一次我错过了它。 - Alany
使用data-toggle=buttons时,checked对我不起作用。如何在页面加载时选择一个单选按钮? - niico

6

我找到了答案! 对于那些想看看它是什么样子的人:

<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>

1
实际上,@awran5回答了你的问题。;) - MrHIDEn
@awran5的答案对我没用,但这个可以。 - Luciano Fantuzzi

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接