解决方法
这是一个如何做到的工作示例:
http://jsfiddle.net/4pk3V/
每当触发关闭事件时,通过再次搜索相同的输入来保持自动完成框打开:
$( "#input" ).autocomplete({ source: availableTags,close : function (event,ui) { val = $("#comment").val(); $("#input").autocomplete( "search",val ); //keep autocomplete open by //searching the same input again $("#input").focus(); return false; } });