jquery scroll 事件,执行一次后如何销毁

2024-11-01 00:21:03
推荐回答(1个)
回答1:

你好,直接销毁移除绑定就可以了,希望采纳:

 $(document).on("scroll", function() {
  var scrollTop = $(this).scrollTop(); 
  var windowHeight = $(window).height(); 
  if (scrollTop > windowHeight / 2 && scrollTop < windowHeight / 2 + 10) {
     $(document).unbind();// 消除绑定的事件
  
   getfall() getfalls() 
   }
    })