ul li:not(:first-child) ul li:not(.text) //不包含class="text"的元素 :not(p) //非段落元素 ul li:not(:first-child):not(:last-child) //not可叠加使用
$("p").not("#selected") //选择id!=selected的段落元素 $('li').not(':even').css('background-color', 'red'); //选择不是偶数的li元素选择class!=test的input元素的两种方法