2019-10-23 设置防抖

var timer = null;



if (timer) clearTimeout(timer);

timer = setTimeout(() => {

          that.showPopupHandler($(this));//方法名或者点击移入移出事件

        }, 700);

你可能感兴趣的:(2019-10-23 设置防抖)