我使用滚动条来提前输入建议。但是当我移动keydown时,项目滚动条没有移动,并且所选项目没有显示。
这是js
$("input").typeahead({
source: ["Alpha", "Alphabet", "Alfa", "Armadillo","ksdjflksdjfl","jksdjflsdjl","qi2ueouqwoei","jalhflasdf","pwoipa","ahweurw","qwipoqwieo"]
});
这是Css:
.typeahead.dropdown-menu {
z-index: 100001;
}
.modal-body {
overflow-y: visible
}
.typeahead {
max-height: 100px !important;
overflow-y: auto !important;
overflow-x: hidden !important;
padding-right: 20px !important;
}
这是html:
<div class='modal'>
<div class='modal-body'>
Hello
<input />
</div>
<div class='modal-footer'>
<button class='btn' data-toggle='modal'>Toggle</button>
</div>
这里是小提琴http://jsfiddle.net/KAVx7/5/
如何解决这个问题。