我正在尝试通过this
访问插件,以便引用稍后在链中添加的方法。
$.fn.test = function(){
console.log(this);
}
但是this
指的是我用来调用插件的元素,而不是插件本身。
如何访问插件,以及附加到它的任何方法?
答案 0 :(得分:0)
如果你想要jQuery对象,请使用$(this)
。
您也可以尝试将此插件添加到jQuery。
(function($){
$.extend($.fn, {
test: function(){
//Plugin code here
//here this will point to jQuery object
}
};
})(jQuery);