all selector
描述: 选择所有元素.
添加的版本: 1.0jQuery( "*" )
警告: 除非被它自己使用,否则 * 选择器或通用选择器,其速度是极其慢的。
例子:
Example: 查找文档中的每一个元素(包括 head, body 等)。 Note that if your browser has an extension/add-on enabled that inserts a <script>
or <link>
element into the DOM, that element will be counted as well.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
|
Demo:
Example: 查找document.body的所有元素 所以像head,script等元素被排除在外。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
|