2

我想删除所有匹配的元素,但跳过每个匹配的第一个实例:

// Works as expected: removes all but first instance of .a
jQuery ('.a', '#scope')
    .each ( function (i) { 
        if (i > 0) jQuery (this).empty();
    });

// Expected: removal of all but first instance of .a and .b
// Result: removal of *all* instances .a and .b
jQuery ('.a, .b', '#scope')
    .each ( function (i) { 
        if (i > 1) jQuery (this).empty();
    });

<div id="scope">

    <!-- Want to keep the first instance of .a and .b -->

    <div class="a">[bla]</div>
    <div class="b">[bla]</div>

    <!-- Want to remove all the others -->

    <div class="a">[bla]</div>
    <div class="b">[bla]</div>

    <div class="a">[bla]</div>
    <div class="b">[bla]</div>
    ...
</div>

有什么建议么?

  • 使用jQuery()而不是$()因为与“遗留”代码冲突
  • 使用.empty()因为.a包含 JS 我想禁用
  • 坚持使用 jQuery 1.2.3

谢谢!

4

2 回答 2

3

试试这个:

$('.a:gt(0), .b:gt(0)').remove();

我不确定是否可以将它们组合成一个选择器:gt(),它可能会改变范围并在第一个.a.

于 2010-03-19T21:56:16.157 回答
1

看起来您的 HTML 不正确。我将其修改为以下内容:

<div id="scope">

    <!-- Want to keep the first instance of .a and .b -->

    <div class="a">[bla]</div>
    <div class="b">[bla]</div>

    <!-- Want to remove all the others -->

    <div class="a">[bla]</div>
    <div class="b">[bla]</div>

    <div class="a">[bla]</div>
    <div class="b">[bla]</div>
    ...
</div>

然后这似乎工作:

jQuery('div#scope div.a').not(':first').empty();
jQuery('div#scope div.b').not(':first').empty();
于 2010-03-19T22:08:32.673 回答