我想使用JQuery的自動完成插件上的輸入框使用Ajax加載的:JQuery的自動完成功能上的Ajax加載的內容
我試圖做到這一點使用下面的代碼,但它只有在用戶點擊兩次工作到輸入:
$(document).ready(function() {
$('#auto').live('keydown', function(){
$(this).autocomplete(
"/autocomplete",
{
delay:10,
minChars:2,
matchSubset:1,
matchContains:1,
cacheLength:10,
onItemSelect:selectItem,
onFindValue:selectItem,
formatItem:formatItem,
autoFill:true
});
});
});
你能告訴我,如果我的代碼有什麼問題嗎?
感謝,
爲什麼不試試$(「#auto」)。focus(function(){...}) ; ? –