3

所以我正在使用jquery进行自动完成。Ajax 用于从远程位置获取沉重的 xml 文件。如果我搜索前。“好汉好汉”使用 ajax 进行了大约 16 个查询(对于除了第 3 个输入的每个字母,请查看代码)。

我希望它在用户按下最后一个键后一秒钟执行 Ajax 请求,因此它将执行一个查询而不是 16 个查询。

因此,如果用户在上次 keydown 事件后 1 秒之前按下另一个键,则它不会执行查询。

<script>
    $(document).ready(function(){
        $('#tv_search').keydown(function(){
            var search = $(this).val();
            if(search.length >= 3)
            {
                $.ajax({
                  type: "GET",
                  url: "search.php",
                  data: {show : search, key : '890k4900k0ll' }
                }).done(function(msg){
                    $('#t').html(msg);
                });
            }
        });
    });
</script>

Search for series: <input type='text' name='tv_search' id='tv_search'>

有任何想法吗?

4

4 回答 4

7

您可以只使用超时,并在每次按下键时清除它:

$(document).ready(function() {
    $('#tv_search').on('keyup', function() {
        clearTimeout($(this).data('timer'));
        var search = this.value;
        if (search.length >= 3) {
            $(this).data('timer', setTimeout(function() {
                $.ajax({
                    type: "GET",
                    url: "search.php",
                    data: {
                        show: search,
                        key: '890k4900k0ll'
                    }
                }).done(function(msg) {
                    $('#t').html(msg);
                });
            }, 1000));
        }
    });
});​
于 2012-12-14T04:25:38.457 回答
3

为避免在每次按键时生成多个 AJAX 请求,请尝试以取消上次超时并在清除超时后调用来启动新超时的方式使用setTimeout()和方法。方法应该包含在四分之一秒(250 毫秒)用户按下一个键后执行的 AJAX 请求。clearTimeout()setTimeout()setTimeout()

abort()如果可用,我也提出请求。

var timeOut = null,
    myXHR = null;
$(document).ready(function(){
    $('#tv_search').keydown(function(){
        // It will clear the setTimeOut activity if valid.
        if(timeOut) clearTimeout(timeOut);

        var search = $(this).val();
        if(search.length >= 3)
        {
            timeOut = setTimeout(function(){
              // Cancel the last request if valid
              if(myXHR) myXHR.abort();

              myXHR = $.ajax({
                type: "GET",
                url: "search.php",
                data: {show : search, key : '890k4900k0ll' }
              }).done(function(msg){
                  $('#t').html(msg);
              });
            }, 250);// wait for quarter second.
        }
    });
});
于 2012-12-14T04:25:42.283 回答
0

我有一个解决方案,可以让您延迟调用的任何方法,避免重复调用,根本不会使用!

https://stackoverflow.com/a/30503848/1834212

于 2015-05-29T12:40:49.907 回答
0

退出简单的解决方案:

<script>
$(document).ready(function(){
var mytimer;
    $('#tv_search').keydown(function(){
       clearTimeout(mytimer);
        var search = $(this).val();
        if(search.length >= 3)
        {
           mytimer = setTimeout(function(){
             $.ajax({
              type: "GET",
              url: "search.php",
              data: {show : search, key : '890k4900k0ll' }
            }).done(function(msg){
                $('#t').html(msg);
            });
         }, 1000);
        }
    });
});

其中“ mytimer ”必须是全局变量,只需在每次事件调用时清除先前的“ mytimer ”。它只会以 1 秒的间隔执行最新的调用。

于 2016-11-24T12:26:48.783 回答