为什么remove不能移除第一个p元素?:first为什么在remove中1不起作用?
<body>
<h2>通过jQuery remove方法移除元素</h2>
<div class="test1">
<p>p元素1</p>
<p>p元素2</p>
</div>
<div class="test2">
<p>p元素3</p>
<p>p元素4</p>
</div>
<button>点击通过jQuery的remove移除元素</button>
<button>点击通过jQuery的remove(选择器)移除指定元素</button>
<script type="text/javascript">
$("button:first").on("click",function(){
$(".test1").remove();
})
$("button:eq(1)").on("click",function(){
$("p").remove(":first")
//$("p").remove(":contains('3')")
$("p").filter(":contains('4')").remove();
})
</script>
</body>