如何在jquery插件中获取目标元素类名或id名?
如何获取插件中目标元素的类名或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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您需要使用选择器属性。例如:
I think that you need to use selector properties. For example:
我不认为这是可能的,除非你明确地将它作为参数传递给插件,因为如果你有一个 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.