jQuery-过滤not()与filter();
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery-过滤not()与filter();相关的知识,希望对你有一定的参考价值。
$(function(){ $("li").not(":even").css("color","red"); $("li").filter(":odd").css("color","red"); })
$(function(){ $("li").filter(function(index) { return index%2 == 0; }).css("color","red"); $("li").not(function(index) { return index%2 !== 0; }).css("color","red"); })
这两种写法,都可以达到一样的效果,not与filter是相反的过滤!
以上是关于jQuery-过滤not()与filter();的主要内容,如果未能解决你的问题,请参考以下文章
R语言dplyr包数据过滤(filter)基于not in规则实战(not in Filter):基于单数据列not in规则过滤数据行基于多数据列not in规则过滤数据行