引用插件内的插件对象
我试图通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要 jQuery 对象,请使用
$(this)
。您还可以尝试向 jQuery 添加插件。
Use
$(this)
if you want the jQuery object.You can also try this to add plugin to jQuery.