jquery - 从另一个元素窃取类而不使用 hasClass()

发布于 2024-11-01 06:13:16 字数 684 浏览 1 评论 0原文

我有一个列表,

<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 技术交流群。

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

发布评论

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

评论(4

墨落画卷 2024-11-08 06:13:16

$('.thisList li a') 生成一个集合,而不是单个元素,因此您需要对其进行迭代。在构建图像时,您还缺少一个空格。

$('.thisList li a').each(function() {
    var thief = this.className.split(/\s+/);
    var booty = thief[1];
    $(this).after('<img class="someOtherClass ' + booty + '" />');
});

$('.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.

$('.thisList li a').each(function() {
    var thief = this.className.split(/\s+/);
    var booty = thief[1];
    $(this).after('<img class="someOtherClass ' + booty + '" />');
});
心在旅行 2024-11-08 06:13:16

您必须循环遍历链接,并单独处理每个链接。否则,您将无法获取每个类的 className 属性。 $('.thisList li a').className 无论如何都不起作用,因为 className 是 DOM 元素的属性,而不是 jQuery 对象的属性。

这应该可以做到:

$('.thisList li a').each(function() {
    var booty = this.className.split(/\s+/)[1];
    $(this).after('<img class="someOtherClass '+booty+'" />');
});

如果“窃取”类意味着删除它,那么您还可以调用:

$(this).removeClass(booty);

更新: 演示

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, as className is a property of the DOM element and not of the jQuery object.

This should do it:

$('.thisList li a').each(function() {
    var booty = this.className.split(/\s+/)[1];
    $(this).after('<img class="someOtherClass '+booty+'" />');
});

If "stealing" the class means removing it, then you can also call:

$(this).removeClass(booty);

Update: DEMO

榆西 2024-11-08 06:13:16

它不起作用的原因是 $('.thisList li a') 返回一个 jquery 对象,该对象没有属性 className。

这是一个未经测试的尝试

$('.thisList li a'). each(function(index, el){
   var class2 = el.className.split(/\s+/)[1];
   $(el).after('<img class="someOtherClass '+class2+'" />');
})

到底为什么你的变量名为 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

$('.thisList li a'). each(function(index, el){
   var class2 = el.className.split(/\s+/)[1];
   $(el).after('<img class="someOtherClass '+class2+'" />');
})

Why on Earth is your variable named booty? And wow, 2 people beat me to it!

述情 2024-11-08 06:13:16

已测试并工作:

var classString = '';

$('.thisList li a').each(function(){
  var elements = $(this).attr('class').split(' ');
  classString += ' ' + elements[1];
});

$('.thisList').after($('<img class="someOtherClass'+classString+'"/>'));

Tested and working:

var classString = '';

$('.thisList li a').each(function(){
  var elements = $(this).attr('class').split(' ');
  classString += ' ' + elements[1];
});

$('.thisList').after($('<img class="someOtherClass'+classString+'"/>'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文