引用插件内的插件对象

发布于 2025-01-03 03:41:51 字数 207 浏览 1 评论 0原文

我试图通过 this 访问插件,以便引用稍后在链中添加的方法。

$.fn.test = function(){

    console.log(this);
}

this 指的是我用来调用插件的元素,而不是插件本身。

我如何访问该插件以及附加到它的任何方法?

I am trying to access plugin through this, in order to refer to methods added later down in the chain.

$.fn.test = function(){

    console.log(this);
}

but this refers to the elements I have used to call the plugin, and not the plugin itself.

How can I access the plugin, and thus any methods attached to it?

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

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

发布评论

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

评论(1

人生戏 2025-01-10 03:41:51

如果您想要 jQuery 对象,请使用 $(this)

您还可以尝试向 jQuery 添加插件。

(function($){

    $.extend($.fn, {
        test: function(){
            //Plugin code here
            //here this will point to jQuery object
        }
    };
})(jQuery);

Use $(this) if you want the jQuery object.

You can also try this to add plugin to jQuery.

(function($){

    $.extend($.fn, {
        test: function(){
            //Plugin code here
            //here this will point to jQuery object
        }
    };
})(jQuery);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文