如何在jquery插件中获取目标元素类名或id名?

发布于 2024-10-30 13:59:05 字数 203 浏览 0 评论 0原文

如何获取插件中目标元素的类名或id名?

例如,

$('.class').pluginname();
$('#mymyid').pluginname();

我想获取 '.myclass''#myid'

这可能吗?

谢谢。

How can I get the targeted element class name or id name in a plugin?

for instance,

$('.class').pluginname();
$('#mymyid').pluginname();

I want to get '.myclass' and '#myid'

Is it possible?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

时光暖心i 2024-11-06 13:59:05

我认为您需要使用选择器属性。例如:

$('.class').selector

I think that you need to use selector properties. For example:

$('.class').selector
怼怹恏 2024-11-06 13:59:05

我不认为这是可能的,除非你明确地将它作为参数传递给插件,因为如果你有一个 DOM 元素列表(这是你在插件中拥有的),你不知道使用哪个选择器来获取这些元素元素,可能有不同的方法和选择器来获取同一组 DOM 元素。

I don't think this would be possible unless you explicitly pass it as parameter to the plugin because if you have a list of DOM elements (which is what you have inside the plugin) you don't know which selector was used to fetch those elements, there might be different ways and selectors for getting the same set of DOM elements.

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