我使用 jquery 很长一段时间,并考虑自己创建一个插件。但是无论教程多么简单,我都无法真正掌握链接的想法。假设我有这个非常简单的插件....
(function($){
$.test = function(){
$.test.one = function(){ alert("1");};
$.test.two = function(){ alert("2");};
return this.each(function(){
(what to write here????)
});
};
})(jQuery);
我想要完成的是,当我打电话时,例如
var myplugin = $.test();
myplugin.one().two();
但它返回给我错误。对不起,我尝试了很多次谷歌搜索简单的教程,但我无法让它工作