html - 保持按钮的事件状态,直到单击另一个按钮

标签 html css bootstrap-4

我使用 bootstrap 创建了一组按钮: enter image description here

如图所示,我已将“欧洲”按钮设为默认激活状态。如果我单击其他按钮,事件按钮将切换,因此效果很好。但是,如果我有一个激活的按钮,然后单击页面上的其他地方(不是按钮),它也会停用当前按钮。如何使按钮保持事件状态,直到单击另一个按钮?

HTML:

<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

    <link rel="stylesheet" type="text/css" href="index.css">

    <title>PUBG Comparison Tool</title>
  </head>
  <body>
<div class="text-center">
    <input type="text" name="search" placeholder="Search...">
    <div class="btn-group">
        <button type="button" autofocus class="btn btn-default">Europe</button>
        <button type="button" class="btn btn-default">Korea/Japan</button>
        <button type="button" class="btn btn-default">North America</button>
        <button type="button" class="btn btn-default">Oceania</button>
        <button type="button" class="btn btn-default">Kakao</button>
        <button type="button" class="btn btn-default">South-East Asia</button>
        <button type="button" class="btn btn-default">South America</button>
        <button type="button" class="btn btn-default">Asia</button>
      </div>
    <br>
    <img src="images/PUBG-lg.png" alt="PUBGLogo" width="30%" height="30%">
</div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
  </body>
</html>

CSS:

@import url('https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css');

.btn-group {
    margin-top: 5px;
}

.btn-group button:focus {
    outline:none !important;
    box-shadow: none !important;
    background-color: lightslategray;
}

.btn-group button:active {
    background-color: lightslategray;
}

body {
    background-image: url(images/pubgbg.png);
    background-size: cover;
}

input[type=text] {
    width: 50%;
    margin-top: 20%;
    border-radius: 5px;
}

.text-center > img {
    margin-top: 50px;
}

最佳答案

在 bootstrap 4 中你可以使用 btn-group-toggle:

<div class="btn-group btn-group-toggle" data-toggle="buttons">
  <label class="btn btn-secondary active">
    <input type="radio" name="options" id="option1" autocomplete="off" checked> Active
  </label>
  <label class="btn btn-secondary">
    <input type="radio" name="options" id="option2" autocomplete="off"> Radio
  </label>
  <label class="btn btn-secondary">
    <input type="radio" name="options" id="option3" autocomplete="off"> Radio
  </label>
</div>

这应该可以解决您的问题,因为它将像复选框一样使用此按钮。

关于html - 保持按钮的事件状态,直到单击另一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49693283/

相关文章:

javascript - 使用 html 标签和 bootstrap 时,为什么文本出现在我的 Shiny 应用程序中

javascript - 点击特定类触发下拉事件

javascript - 查找最接近的父级 .classOne 或 .classTwo jquery

HTML block 放置

css - 无法在 bootstrap div 上正确使用背景图像

html - BootStrap 4 使不同大小的图像在列的行中具有相同的大小

twitter-bootstrap - 卡片列嵌入推文 : Difference Between Chrome and other browsers

javascript - 仅打印文本框中字符串中的元音

javascript - 在 AngularJS 中用公式调用 Controller

html - 使整个 div 可点击但保持当前样式的最佳方法是什么?