2

如果用户离开页面查看文档here,有没有办法停止ui jQuery Autocomplete我看到很多东西

.autocomplete( "destroy" )
.autocomplete( "disable" )
.autocomplete( "close" )

但是在用户离开现场后如何使用它们

$("#request_song").autocomplete({
  source: function(req, add){
    $.getJSON('<%= ajax_path("trackName") %>', req, function(data) {
      var suggestions = data.suggestions;
      add(suggestions);
    });
  },
  change: function() {
    var main = $('#main_content');
    main.empty().append("<img id=\"throbber\" src='/pre_config/css/images/throbber.gif' alt='Loading. Please wait.' />");
    $("#band_events").load("/load_events/"+ escape($('#request_artist').val()), successCallback );
  },
});
4

1 回答 1

6

将事件处理程序绑定blur到字段(本质上是失去焦点事件):

$("#request_song").blur(function(){
    // Using disable and close after destroy is redundant; just use destroy
    $(this).autocomplete("destroy");
});
于 2010-09-16T00:36:57.633 回答