jQuery 插件:我希望能够从调用的方法访问选择器。
这是一个简单的例子。这是对该方法的调用。
$('.className').somePlugin.someMethod(1);
我的问题是:如何在下面的方法中访问 $('.className') ?
$.fn.somePlugin.someMethod = function(someNode) {
enter code here
}
我想从方法中动态获取 $('.className') 对象,如上所示。知道这是否可能而不必做这样的事情:
$.somePlugin.someMethod('.className', 1);
提前谢谢。
This is a simple example. Here is the call to the method.
$('.className').somePlugin.someMethod(1);
My question is: How do I access $('.className') within the below method?
$.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);
Thnaks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到一些关于 jQuery 对象上有一个选择器属性的抱怨。但我从未尝试过。它是这样的......
看看 jQuery end()。这里可能对你有一些用处。
http://api.jquery.com/end/
I've seen some mumblings about there being a selector attribute on the jQuery object. I've never tried it though. It goes like this...
Take a look at jQuery end(). It may be of some use to you here.
http://api.jquery.com/end/