我正在使用Bootstrap 3,我有一個autosugest輸入。問題是我想<ul>
與鍵盤鍵滾動,但它不起作用。我認爲使用箭頭鍵滾動是默認行爲,但<ul>
沒有做到。這裏是正在發生的事情:ul列表不滾動的按鍵,但它與鼠標滾輪
如果我按向下鍵兩次:
我使用Bassjobsen開發的typeahead。
HTML代碼:
<input type="text" class="form-control" data-provide="typeahead" id="test">
的Javascript(帶的jquery.js)代碼:
$('document').ready (function() {
$('#test').typeahead({
source: ['algo', 'pepe', 'algo2', 'algo34', 'pepe3', 'algo42'],
items: 'all',
minLength: 2
});
});
我設置items
到all
以顯示source
所有項目。這就是爲什麼我需要滾動它們。
我加入這個內嵌樣式生成的<ul>
:
style="max-height: 50px; overflow-y: auto;"
所以這是Bassjobsens庫生成的代碼:
<ul class=" dropdown-menu" style="max-height: 50px; overflow-y: auto; top: 73px; left: 20px; display: none;" "="">
<li class="active">
<a href="#"><strong>al</strong>go</a>
</li>
<li>
<a href="#"><strong>al</strong>go2</a>
</li>
<li>
<a href="#"><strong>al</strong>go34</a>
</li>
<li>
<a href="#"><strong>al</strong>go42</a>
</li>
</ul>
關於該問題的任何更新? – anvarik