我试图将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'));
答案 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);
});