remove()为什么不能删除第一个子元素?
代码如下,我把原代码的“:contains('3')”换成了$(".test2")remove(“:first-child”)就无法实现了,类似的还有几个选择器,用了也无法实现
<script type="text/javascript">
$("button:first").on('click', function() {
//删除整个 class=test1的div节点
$(".test1").remove()
})
$("button:last").on('click', function() {
//找到所有p元素中,包含了3的元素
//这个也是一个过滤器的处理
$(".test2").remove(":first-child")
})
</script>