确保函数在 JQuery Widget 中仅绑定一次

发布于 2024-12-17 17:07:28 字数 376 浏览 1 评论 0原文

我编写了一个非常简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

习ぎ惯性依靠 2024-12-24 17:07:28

查看 one() 方法。

Check out the one() method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文