我真的很激动,因为我的代码非常适合我(见下文),但是我不能使用箭头键在结果列表中向上/向下移动。
在演示中,此功能也不可用,但是我知道它已在jQuery autocomplete中启用,所以我想知道你们中是否有人让它也适用于 typeahead?
<input type="text" class="span3" style="margin: 0 auto;" data-provide="typeahead" data-items="13" data-source='[<?php
                $ii=0;
                while($row = mysql_fetch_array($resultatOrter)){
                    if($i!=0){
                        echo ',';
                    }
                echo '"'.$row['ortnamn'].'"';
                $i++;
            } ?>]'>