如何用javascript显示数据列表?

How to show datalist with javascript?

嘿,我想在点击按钮时显示特定输入的数据列表,但我找不到如何操作。

HTML

<input type="text" name="" value="" list="list" id='input'>
<datalist id='list'>
  <option value="aaa">
  <option value="bb">
</datalist>
<div onclick="showDataList(event,'input')">
  Click
</div>

JS

function showDataList(e,id) {
  document.getElementById(id).list.show()
}

我试过双 focus()、focus() 和 click() 并检查触发了哪个事件数据列表显示函数,但无济于事。

并非所有浏览器都支持 Datalist,并且处理方式也不尽相同。我建议你切换到 flexselect 之类的东西:https://rmm5t.github.io/jquery-flexselect/

这可能不会给您想要的答案,但没有适用于数据列表(在所有浏览器上)的解决方案。您可以破解并使其在 Chrome 或 Firefox 上运行,但即使那样也很难做到,因为 Google 和 Mozilla 已完全限制不受信任的 events/triggers 的使用。在这里阅读:https://www.chromestatus.com/features/5718803933560832 https://www.chromestatus.com/features/6461137440735232

initMouseEvent 也已弃用,过去允许您创建此行为的所有其他低级方法也已弃用。

要使用下拉菜单,使用第 3 方库更简单,例如 material-ui/semantic-ui。
但是如果你想要干净的解决方案,这种默认方法可能会有用。

/* When the user clicks on the button, 
toggle between hiding and showing the dropdown content */
function myFunction() {
  document.getElementById("myDropdown").classList.toggle("show");
}

// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
  if (!event.target.matches('.dropbtn')) {
    var dropdowns = document.getElementsByClassName("dropdown-content");
    var i;
    for (i = 0; i < dropdowns.length; i++) {
      var openDropdown = dropdowns[i];
      if (openDropdown.classList.contains('show')) {
        openDropdown.classList.remove('show');
      }
    }
  }
}
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}
<div class="dropdown">
  <button onclick="myFunction()" class="dropbtn">Dropdown</button>
  <div id="myDropdown" class="dropdown-content">
    <a href="#aaa">aaa</a>
    <a href="#bb">bb</a>
  </div>
</div>