setTimeout 节流函数

var timeout;

var search=function(){

  clearTimeout(timeout);

  timeout=setTimeout(function(){
    //请求的代码
  },200)
}

posted on 2017-06-22 22:43  码农Tony  阅读(186)  评论(0)    收藏  举报

导航