jquery-ui – 如果找不到任何内容,则从jquery ui自动完成中删除微调器

前端之家收集整理的这篇文章主要介绍了jquery-ui – 如果找不到任何内容,则从jquery ui自动完成中删除微调器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从支持 jquery ui autocomplete的文本字段中删除微调器(显示正在加载的图片).
由于没有“源没有返回结果”的事件,因此无法触发此操作.
$( "#q" ).autocomplete({
   source: "${createLink(mapping:'qsearch')}",minLength: 2,select: function( event,ui ) {
      foo( ui.item.id );
   },search: function( event,ui ) {
      bla();
   }
});

解决方法

根据我的答案 here改编,添加以下代码以在搜索完成后执行(即使结果为0):
var __response = $.ui.autocomplete.prototype._response;
$.ui.autocomplete.prototype._response = function(content) {
    __response.apply(this,[content]);
    this.element.trigger("autocompletesearchcomplete",[content]);
};

代码将触发一个事件(autocompletesearchcomplete),然后您可以将其绑定到:

$("#q").bind("autocompletesearchcomplete",function(event,contents) {
    /* Remove spinner here */
});

希望有所帮助.

原文链接:https://www.f2er.com/jquery/176798.html

猜你在找的jQuery相关文章