jquery - 从另一个元素窃取类而不使用 hasClass()
我有一个列表,
<ul class="thisList">
<li><a href="" class="iconViewport icon_import"><span>Import</span></a></li>
<li><a href="" class="iconViewport icon_products"><span>Artikel</span></a></</li>
</ul>
我想要 jquery-“窃取”每个 li 的第二个类,插入一个 img 元素并将窃取的类附加到它。我不能使用 hasClass 因为类每次都不同。
有人可以帮我纠正以下问题:
var thief = $('.thisList li a').className.split(/\s+/);
var booty = thief[1];
$('.thisList li a').after('<img class="someOtherClass'+booty+'" />');
我试图将 a 的所有类放入一个数组中,然后窃取该数组的第二个元素并将其附加到插入的 img 标签上。
尚未工作...感谢您的帮助!
I have a list
<ul class="thisList">
<li><a href="" class="iconViewport icon_import"><span>Import</span></a></li>
<li><a href="" class="iconViewport icon_products"><span>Artikel</span></a></</li>
</ul>
I want to jquery-"steal" the 2nd class of each li, insert an img element and attach the stolen class to it. I cannot use hasClass since the class differs every time.
Can someone help me correct the following:
var thief = $('.thisList li a').className.split(/\s+/);
var booty = thief[1];
$('.thisList li a').after('<img class="someOtherClass'+booty+'" />');
I'm trying to put all classes of a into an array, then steal the 2nd element of this array and attach it to the inserted img tag.
Not working yet... Thanks for help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
$('.thisList li a')
生成一个集合,而不是单个元素,因此您需要对其进行迭代。在构建图像时,您还缺少一个空格。$('.thisList li a')
yields a collection, not a single element so you need to iterate over it. You're also missing a space when building you images.您必须循环遍历链接,并单独处理每个链接。否则,您将无法获取每个类的
className
属性。$('.thisList li a').className
无论如何都不起作用,因为className
是 DOM 元素的属性,而不是 jQuery 对象的属性。这应该可以做到:
如果“窃取”类意味着删除它,那么您还可以调用:
更新: 演示
You have to loop over the links, and process each of them individually. Otherwise you cannnot get the
className
property for each of them.$('.thisList li a').className
won't work anyway, asclassName
is a property of the DOM element and not of the jQuery object.This should do it:
If "stealing" the class means removing it, then you can also call:
Update: DEMO
它不起作用的原因是 $('.thisList li a') 返回一个 jquery 对象,该对象没有属性 className。
这是一个未经测试的尝试
到底为什么你的变量名为 booty?哇,有两个人比我先一步!
The reason it doesn't work is because $('.thisList li a') returns a jquery object, which has no property className.
Here's an untested attempt
Why on Earth is your variable named booty? And wow, 2 people beat me to it!
已测试并工作:
Tested and working: