这是一个简单的例子。这是对方法的调用。
$('.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);
提前做好准备。
答案 0 :(得分:0)
我看到一些关于jQuery对象上有一个selector属性的笨拙。我从来没有尝试过。就像这样......
$(this).selector
看一下jQuery end()。这可能对你有用。