jQuery插件:我希望能够从调用的方法访问选择器。

时间:2011-11-03 14:39:14

标签: javascript jquery jquery-plugins

这是一个简单的例子。这是对方法的调用。

$('.className').somePlugin.someMethod(1);

我的问题是:如何在以下方法中访问$('。className')?

$.fn.somePlugin.someMethod = function(someNode) {

    enter code here

}

I would like to dynamically get the $('.className') object from within the method as illustrated above. Any idea if this is possible without having to do something like this:

$.somePlugin.someMethod('.className', 1);
提前做好准备。

1 个答案:

答案 0 :(得分:0)

我看到一些关于jQuery对象上有一个selector属性的笨拙。我从来没有尝试过。就像这样......

$(this).selector

看一下jQuery end()。这可能对你有用。

http://api.jquery.com/end/