css中:not()选择器和jQuery中.not()方法
程序员文章站
2022-03-11 08:37:15
因为老是将这两个的not方法弄混,所以写一下备忘。 css中:not()选择器用法 :not 伪类选择器可以筛选不符合表达式的元素,:not(selector) 其中的selector为css选择器 jQuery中.not()方法not() 从匹配元素集合中删除元素。 ......
因为老是将这两个的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(...);
上一篇: JS(JavaScript)的初了解5(更新中···)
下一篇: Wxpython零基础制作计算器
推荐阅读
-
elementUI+vue中的日期选择器的编辑和回显
-
jQuery中的$.ajax()方法应用_jquery
-
jquery中.add()的使用方法解析
-
jQuery的显示和隐藏方法与css隐藏的样式对比_jquery
-
JQuery 中几个类选择器的简单使用介绍_jquery
-
解决同一页面中两个iframe互相调用jquery,js函数的方法
-
jquery选择器中的空格与大于号>、加号+与波浪号~的区别
-
详解CSS3中常用的样式【基本文本和字体样式】
-
浅析CSS3 中的 transition,transform,translate之间区别和作用
-
从父页面读取和操作iframe中内容方法_javascript技巧