我在我的HTML是這樣的:如果它發生的jQuery remove元素兩次
<div class="onlyContent">
<!-- some more stuff here -->
</div>
<div class="onlyContent">
<!-- some more stuff here -->
</div>
現在,隨着jQuery
我想刪除從DOM類onlyContent
HTML的第二occurence。
最終的結果應該是這樣的:
<div class="onlyContent">
<!-- some more stuff here -->
</div>
我想通了,你能以某種方式使用nth-child
-selector,但在嘗試訪問這種方式並沒有爲我
$('.onlyContent:nth-child(2)').remove();
做
你的代碼工作[演示](http://jsfiddle.net/3bptwLzh/1/) – ozil