为相对的两个方法:not()返回不满足的,filter()返回满足条件的
实例1:
$("p").not(":even").css("background-color","yellow");//下标不是偶数
$("p").filter(":even").css("background-color","yellow");//下标为偶数
实例2:
通过class,id两个条件判断
$("p").not(".intro,#outro").css("background-color","yellow");
$("p").filter(".intro,#outro").css("background-color","yellow");
实例3:
通过函数去判断
$("p").not(function(){
return $("span",this).length==2;}).css("background-color","yellow");
}
$("p").filter(function(){
return $("span",this).length==2;}).css("background-color","yellow");
}
网友评论