0

我遇到了 each() 函数的问题。我喜欢的是返回 false;然后重新启动。您会看到 each() 函数只重复第一个链接。我希望每个链接都克隆每个 $('.ms-PostTitle a') ...查看我的代码。请帮忙!

========HTML======= each() 函数当前正在做什么:( ....

<div class="ms-PostTitle"> 
    <a href="Post.aspx?ID=1">Post #1</a>
</div>
<a href="Post.aspx?ID=1" class="read-more">Read More</a>

<div class="ms-PostTitle"> 
    <a href="Post.aspx?ID=2">Post #2</a>
</div>
<a href="Post.aspx?ID=1" class="read-more">Read More</a>

========HTML======= 我也喜欢它的东西....

<div class="ms-PostTitle"> 
    <a href="Post.aspx?ID=1">Post #1</a>
</div>
<a href="Post.aspx?ID=1" class="read-more">Read More</a>

<div class="ms-PostTitle"> 
    <a href="Post.aspx?ID=2">Post #2</a>
</div>
<a href="Post.aspx?ID=2" class="read-more">Read More</a>

========jQuery=======

    $('.ms-PostTitle a').each(function () {
       var href = $(this).attr('href');         
       $('<a class="read-more" href=' + href + '>Read More</a>').insertAfter('div.ms-PostBody p');
       return false;
});
4

1 回答 1

3

这应该工作

$('.ms-PostTitle a').each(function () { 
   $('<a>', { text: "Read More", class: "read-more", href: this.href }).insertAfter($(this).parent());
});

http://jsfiddle.net/RLa5C/1/

于 2012-05-01T13:09:22.093 回答