1. 程式人生 > >輸入框自動補全js程式碼

輸入框自動補全js程式碼

 $('.searchIpt').keyup(function(e){
if(event.which >= 37 && event.which <=40 || event.which == 13){//鍵盤值在37和40之間是上下鍵,13時是enter鍵
return;
}
$.get("/backstage/getDebtors?keyword=" + $(this).val(), function(result){
$('.searchIpt').AutoComplete({
       'data': result.debtors, //debtors是後臺傳入的資料
       'itemHeight': 24,//高
       'width': 210 //寬
   }).AutoComplete('show');

});



其中要引入autocomplete.js外掛