filter和not这两个过滤器的区别?
jquery中过滤器filter()和not()有什么区别?
$("#test2").click(function(event) {
$('li').filter(':even').css('background-color', 'blue');
})
$("#test3").click(function(event) {
$('li').not(':even').css('background-color', 'red');
})
此例中filter对所有的li进行筛选,而not似乎只是对li的同级元素进行筛查,对于后代元素(AB123)不做判断吗?求大神指教我这个刚入门的菜鸟