用户点击单选按钮时关闭下拉菜单

时间:2018-02-14 21:20:03

标签: jquery html

当用户点击单选按钮时,我无法找到如何关闭下拉菜单。如果用户单击下拉列表中的任何其他位置,它将关闭,但由于某种原因,当用户单击单选按钮时,下拉菜单不会关闭。当用户点击下拉菜单关闭的单选按钮时,我该怎么办?

这是我的代码

<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h2>Dropdowns</h2>
  <p>The .dropdown class is used to indicate a dropdown menu.</p>
  <p>Use the .dropdown-menu class to actually build the dropdown menu.</p>
  <p>To open the dropdown menu, use a button or a link with a class of .dropdown-toggle and data-toggle="dropdown".</p>                                          
  <div class="dropdown">
    <button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Dropdown Example
    <span class="caret"></span></button>
    <ul class="dropdown-menu">
      <li><label class="checkbox-inline"><input type="radio" value="">Option 1</label></li>
      <li><label class="checkbox-inline"><input type="radio" value="">Option 2</label></li>
    </ul>
  </div>
</div>

</body>
</html>

这是jsfiddle的链接

https://jsfiddle.net/aaronmk2/7t43vazf/7/

2 个答案:

答案 0 :(得分:2)

在您的特定实例中,您可以通过从open删除课程<div class='dropdown'>来关闭下拉列表。

您可以使用jQuery在单选按钮上创建onClick侦听器来触发此事件。

超低科技的方式:

// jQuery 
$(document).ready(function() {

  // Click handler for when you click the checkbox
  $(".checkbox-inline").click(function() {

    // find the nearest dropdown and remove the 'open' class to close
    $(this).closest(".dropdown").removeClass("open");
  });
})

答案 1 :(得分:0)

你必须添加data-toggle =&#34;下拉&#34;也属于输入元素(对于两个无线电输入)。