确保函数在 JQuery Widget 中仅绑定一次
我编写了一个非常简单的 JQuery 小部件来处理固定工具栏:
(function($){
$.fn.stickytoolbar = function(options){
$(window).bind(
'scroll resize', function(){
});
}
})(JQuery);
现在我遇到的问题是,每次我说 $('.something').stickytoolbar()
它可能会再次绑定窗口事件,并且再次因为 $(window)
位于全局范围内。
无论如何,是否有办法确保无论我制作多少个粘性工具栏小部件,窗口上的绑定都只发生一次?
谢谢,
I have written a very simple JQuery widget to handle fixed toolbars:
(function($){
$.fn.stickytoolbar = function(options){
$(window).bind(
'scroll resize', function(){
});
}
})(JQuery);
Now the problem I have is that everytime I say $('.something').stickytoolbar()
it will potentially bind the window event again and again because $(window)
is in the global scope.
Is there anyway there to make sure that the bind on the window only occurs once no matter how many of the stickytoolbar widgets I make?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 one() 方法。
Check out the one() method.