delaying actions between keypress in jQuery

后端 未结 5 1235
刺人心
刺人心 2020-12-08 02:23

How can I delay actions between keypress in jQuery. For example;

I have something like this

 if($(this).val().length > 1){
   $.post(\"stuff.php\"         


        
5条回答
  •  借酒劲吻你
    2020-12-08 03:04

    You can use jQuery's data abilities to do this, something like this:

    $('#mySearch').keyup(function() {
      clearTimeout($.data(this, 'timer'));
      var wait = setTimeout(search, 500);
      $(this).data('timer', wait);
    });
    
    function search() {
      $.post("stuff.php", {nStr: "" + $('#mySearch').val() + ""}, function(data){
        if(data.length > 0) {
          $('#suggestions').show();
          $('#autoSuggestionsList').html(data);
        }else{
          $('#suggestions').hide();
        }
      });
    }
    

    The main advantage here is no global variables all over the place, and you could wrap this in an anonymous function in the setTimeout if you wanted, just trying to make the example as clean as possible.

提交回复
热议问题