标签: javascript jquery
<p>1</p> <p>2</p> <p>3</p>
我想在不使用<p>或CSS .eq()的情况下隐藏/删除第二个nth-child(2),我只想抓住该值,如果它是2,则删除它。
<p>
.eq()
nth-child(2)
答案 0 :(得分:6)
使用.filter()功能:
.filter()
$('p').filter(function(){ return $(this).text() == "2"; }).remove();