$('selector').autocomplete
({
minLength: 0,
source: function (t, r)
{
// get list here
}
})
.focus
(
function()
{
if (this.value == "")
{
$(this).autocomplete('search', '');
}
}
);
感谢:http://www.sikosoft.com/item/activate_jquery_autocomplete_on_focus