css中:not()選擇器和jQuery中.not()方法

大嘴怪獸發表於2018-10-23

因為老是將這兩個的not方法弄混,所以寫一下備忘。

css中:not()選擇器用法

:not 偽類選擇器可以篩選不符合表示式的元素,:not(selector) 其中的selector為css選擇器

ul li:not(:first-child)

ul li:not(.text) //不包含class="text"的元素

:not(p) //非段落元素

ul li:not(:first-child):not(:last-child)  //not可疊加使用

jQuery中.not()方法
not() 從匹配元素集合中刪除元素。

$("p").not("#selected")  //選擇id!=selected的段落元素

$(`li`).not(`:even`).css(`background-color`, `red`);  //選擇不是偶數的li元素

選擇class!=test的input元素的兩種方法
$(input:not(.test)).css(...);
$(input).not(".test").css(...);


相關文章