在jquery插件中理解this.each

时间:2014-03-05 06:03:05

标签: jquery-plugins

我正在学习如何编写jQuery插件。我在下面有这个代码,我的问题是this在下面的代码中代表什么?

$.fn.myNewPlugin = function() {

    return this.each(function() {
        // Do something to each element here.
    });

};

1 个答案:

答案 0 :(得分:0)

当您编写插件时,您正在扩展jQuery对象,并且因为jQuery对象是一个序列,所以当您使用return this.each(function () { });时,您的插件将针对序列的每个项执行。