jQuery:将父母的ID添加到Child的rel

时间:2015-06-11 20:29:04

标签: javascript jquery

我试图将paren的ID添加到其孩子的rel中。我喜欢这个

<div id="gallery-1>
 <a href="">
 <a href="">
</div>
<div id="gallery-2">
 <a href="">
 <a href="">
</div>

看起来像这样:

<div id="gallery-1" class="gallery">
 <a href="" rel="gallery-1">
 <a href="" rel="gallery-1">
</div>
<div id="gallery-2" "class="gallery">
 <a href="" rel="gallery-2">
 <a href="" rel="gallery-2">
</div>

我的代码:

$('.gallery a').attr('rel', $(this).parent('.gallery').attr('id'));

2 个答案:

答案 0 :(得分:1)

您需要将代码放入回调中。否则,它在原始函数中调用,而不是集合中的每个元素。

$(".gallery > a").attr("rel", function() {
    return $(this).parent().attr("id");
});

答案 1 :(得分:0)

试试这个:

 $("div").each(function(){
     var $this = $(this);
     var id = $this.attr("id");
     $this.children().attr("rel", id);
 });

https://jsfiddle.net/0tr5wem0/