jQuery插件,使方法可用于所有对象

时间:2017-02-16 22:56:41

标签: jquery

我在jquery插件中遇到了一些问题。 我有以下内容:

$.fn.plugin(){
   all the code inside here
}

但我的代码开始变得有点沉重,所以我试图在不同的函数中进行重组:

$.fn.plugin(){
   function one(){}
   function two(){}
   ...
}

但是这样做会为传递给插件的每个对象定义这些函数。 所以我想知道是否有更好的方法来做到这一点,使这些函数的声明对所有对象都是通用的,但同时我想保留对调用方法的objetct的引用。 这样的事情。

$.fn.plugin(){}
function one(){I need to access "this" inside}
function two(){I need to access "this" inside}
   ...

谢谢!

0 个答案:

没有答案