Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在代码中调用滚动函数:
$(window).bind('scroll',function (){ loading(); });
这里 loading() 发送一个 Ajax 请求来加载页面,现在我想在我的 total_pages 计数等于 current_page 时停止调用这个函数,否则它发送了太多的 Ajax 请求。
如何停止在 Jquery 中调用此函数?
您可以使用unbind方法scroll从window. 尝试:
scroll
window
$(window).unbind('scroll');
它应该可以解决问题