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

发布于 2024-12-13 15:17:26 字数 393 浏览 0 评论 0原文

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

$('.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无法回应 2024-12-20 15:17:26

我看到一些关于 jQuery 对象上有一个选择器属性的抱怨。但我从未尝试过。它是这样的......

$(this).selector

看看 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...

$(this).selector

Take a look at jQuery end(). It may be of some use to you here.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文