0
$("div", $("body")).length

在 qUnit 文档中看到了类似的东西,我以前从未见过类似的东西。

4

1 回答 1

3

第二个参数是如下语法中的上下文,

jQuery( selector [, context] )

selector: A string containing a selector expression

context: A DOM Element, Document, or jQuery to use as context

基本上定义如下,

默认情况下,选择器从文档根目录开始在 DOM 中执行搜索。但是,可以使用 $() 函数的可选第二个参数为搜索提供替代上下文。

http://api.jquery.com/jQuery/

于 2012-11-28T20:53:49.633 回答