2014-09-02 64 views

回答

1

嘗試這個

$('input').autocomplete({ 
autoFocus: true, 
source: ["test","some text"], 
delay: 0, 
select: function(event, ui) { if (event.keyCode == 13) { 
    $(this).next("input").focus().select(); 
} } 

});

http://jsfiddle.net/YbPVX/5/

+0

我使用asp自動完成文本框;不是jQuery的一個。 :( – user2438237 2014-09-02 22:23:42

相關問題