如何进行可搜索的下拉

时间:2017-09-27 08:52:06

标签: javascript drop-down-menu jira bootstrap-4 search-box

所以我使用bootstrapp做了一个下拉列表。

我在这里采取的代码:http://getbootstrap.com/docs/4.0/components/dropdowns/

<div class="dropdown">
  <button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Dropdown button
  </button>
  <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
    <a class="dropdown-item" href="#">Action</a>
    <a class="dropdown-item" href="#">Another action</a>
    <a class="dropdown-item" href="#">Something else here</a>
  </div>
</div>

现在我想在下拉列表中添加一个搜索框,以便人们可以输入,并缩短到更合适的下拉列表。

我尝试找到很多方法,其中一些使用像Select2这样的外部插件,但是,他们需要使用<select><option>标记编码的下拉列表。相比之下,我的代码使用按钮和Bootstrapp的内置下拉类。

任何人都请帮助我。

2 个答案:

答案 0 :(得分:1)

当我想对列表进行排序时,我使用list.js。 下面是一个示例,说明如何通过Boostrap-4下拉列表以及可以过滤的列表来解决您的问题:

https://jsfiddle.net/o9b17p2d/29/

HTML:

<div class="dropdown">
  <button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Dropdown
  </button>
  <div class="dropdown-menu" aria-labelledby="dropdownMenu2" id="dropdown-sorted-list">
    <ul class="dropdown-menu-list list">
      <li>
        <button class="dropdown-item dropdown-item-name" type="button">Action</button>
      </li>
      <li>
        <button class="dropdown-item dropdown-item-name" type="button">Another action</button>
      </li>
    </ul>
    <input type="text" class="form-control dropdown-item search" placeholder="Filter" aria-label="Filter" aria-describedby="basic-addon1">
  </div>
</div>

JS: 请参阅list.js documentation中的示例5,了解如何设置list.js。

$(document).ready(function() {
  var options = {
    valueNames: ['dropdown-item-name']
  };

  var hackerList = new List('dropdown-sorted-list', options);
});

CSS:

.dropdown-menu-list {
  list-style-type: none;
  padding-left: 0;
}

您可以在Bootstrap 4 documentation for dropdowns中阅读,可以在下拉列表中使用<button>元素。

答案 1 :(得分:0)

感谢各位帮忙,我找到了解决方案。在这里为任何需要的人发帖

function searchBox() {
    var input, filter, ul, li, a, i;
    input = document.getElementById("myInput");
    filter = input.value.toUpperCase();
    ul = document.getElementById("myUL");
    li = ul.getElementsByTagName("li");
    for (i = 0; i < li.length; i++) {
        a = li[i].getElementsByTagName("a")[0];
        if (a.innerHTML.toUpperCase().indexOf(filter) > -1) {
            li[i].style.display = "";
        } else {
            li[i].style.display = "none";

        }
    }
}