weixin_33692284 2017-05-04 16:18 采纳率: 0%
浏览 98

使用jquery AJAX进行实时搜索?

How can I create a live search with Jquery AJAX, I used keypress or keyup event to loop query, but if I type 3 characters or more the AJAX will do 3 times or more.

My form:

<input class="keyword-search" type="text" name="s" autocomplete="off" placeholder="Where do you want to go?">

Here my AJAX:

<script>
  jQuery(document).ready(function(){
            (function($){
                $(".keyword-search").keypress(function(){
                    var keyword = $(this).val(); 
                     $(".search-appear").empty();
                    $.ajax({
                        type: "post",
                        url: "<?php echo admin_url( 'admin-ajax.php' ); ?>",
                        data: { action: 'get_tour', keyword: keyword },
                        beforeSend: function() {$("#loading").fadeIn('slow');},
                        success: function(data) {
                            $("#loading").fadeOut('slow');
                            $(".search-appear").append(data);
                             }
                    });
                });
            })(jQuery);
        });
</script>   

And Here is my demo function:

function get_tour()
            echo 'Do something!';
       ?>
      <?php  die(); }

And this is result when I type 3 characters: type 3 characters I type 2 chars: type 2 characters Who can help me it work 1 time no matter how many key press. Or it work fine anyway ! Thanks a lot !!

  • 写回答

1条回答 默认 最新

  • weixin_33713503 2017-05-04 16:26
    关注

    Add your ajax to the ajaxFunction and this will work when a user types or pastes content into the search if the value is larger than 3.

    The ajaxFunction will be somethign like this:

    var ajaxFunction = function( data ) {
        $.ajax({
            type: "post",
            url: "<?php echo admin_url( 'admin-ajax.php' ); ?>",
            data: { action: 'get_tour', keyword: data },
            beforeSend: function() {$("#loading").fadeIn('slow');},
            success: function(data) {
                $("#loading").fadeOut('slow');
                $(".search-appear").append(data);
            }
        });
      }
    }
    

    $(document).ready(function(){
      
      var ajaxFunction = function( val ){
        $('#out').text('Val: ' + val);
      }
      
      $('#search').on('keyup paste',function(){
        if(this.value.length >= 3)
          ajaxFunction(this.value);
      });
    
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <input type="text" id="search">
    <div id="out"></div>

    </div>
    
    评论

报告相同问题?

悬赏问题

  • ¥15 用Matlab实现图中的光线追迹
  • ¥15 联想笔记本开机出现系统更新界面
  • ¥15 各位帮帮我 我不想重做系统
  • ¥30 微信小程序蓝牙数据透传
  • ¥15 加氢站氢负荷数据集来源
  • ¥15 umi接入sentry遇到问题
  • ¥15 HBuilderX打包H5网页,扫码模块无法使用
  • ¥15 Javascript跳转页面后,无法执行后面代码,如何解决?
  • ¥15 echarts绘制图表
  • ¥15 请教两个关于高德地图定位不准的技术问题