解决方法
我假设您正在使用远程数据源.如果是这样,请在您提供给source参数的函数内使用$.ajax.例如:
$("#auto").autocomplete({ source: function(request,response) { $("#loading").show(); // Where #loading is the loading indicator $.ajax({ url: "Your_URL_HERE",data: request.term,success: function(data) { response(data); $("#loading").hide(); },error: function() { $("#loading").hide(); } }); } });