jQuery :not() 选择器
jQuery 教程
· 2019-03-10 11:58:19
实例
选取除了 class="intro" 元素以外的所有 <p> 元素:
$("p:not(.intro)")
定义和用法
:not() 选择器选取除了指定元素以外的所有元素。
最常见的用法:与其他选择器一起使用,选取指定组合中除了指定元素以外的所有元素(如上面的实例)。
语法
$(":not(selector)")
| 参数 | 描述 |
|---|---|
| selector | 必需。规定不选择的元素。 该参数接受任何类型的选择器。 |
点击查看所有 jQuery 教程 文章: https://codercto.com/courses/l/35.html
Visual Thinking
Colin Ware / Morgan Kaufmann / 2008-4-18 / USD 49.95
Increasingly, designers need to present information in ways that aid their audiences thinking process. Fortunately, results from the relatively new science of human visual perception provide valuable ......一起来看看 《Visual Thinking》 这本书的介绍吧!