jQuery 插件:如何从辅助功能访问应用了插件的元素?

发布于 2024-12-10 19:18:18 字数 735 浏览 0 评论 0原文

我是 jQuery 新手,正在构建一个自定义插件,它看起来像这样(伪代码):

jQuery.fn.myPlugin = function( options )
{

    var defaults = {
        interval : 5 * 1000
    };

    var interval_handler = setInterval( function( ) { update( ); }, interval );

    var opts = $.extend( defaults, options );

    return this.each( function( ){
        $( this ).bind( event, stuff );
    });

    function update( )
    {
        if ( condition == true )
        {
            clearInterval( interval );

            // unbind() foreach element the plugin has used
        }
    }
}

我的问题是:

如何访问插件在 return this.each(... ) 来自 update( ) 函数?

另外,我在插件中使用函数的方式正确吗?我不知道该怎么做,所以我只是尝试了一下,结果成功了。

I am new to jQuery and I am building a custom plugin, it looks something like this (pseudo-code):

jQuery.fn.myPlugin = function( options )
{

    var defaults = {
        interval : 5 * 1000
    };

    var interval_handler = setInterval( function( ) { update( ); }, interval );

    var opts = $.extend( defaults, options );

    return this.each( function( ){
        $( this ).bind( event, stuff );
    });

    function update( )
    {
        if ( condition == true )
        {
            clearInterval( interval );

            // unbind() foreach element the plugin has used
        }
    }
}

My question is:

How can access all the elements the plugin has used on return this.each(...) from the update( ) function?

Also, is the way im using functions inside the plugin correct? I didn't know how to do it so I just tried that and it worked.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

友欢 2024-12-17 19:18:18

您需要将其放入变量中:

var elements = this;

You need to put it in a variable:

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