可能重复:
$() 的第二个参数是什么意思?
有一段时间我使用 jQuery,有时我会看到:
$(argument1, argument2).doSomething();
使用第二个参数进行过滤的文档在哪里?
编辑:
我说的是这种使用方式:
var t=0; // the height of the highest element (after the function runs)
var t_elem; // the highest element (after the function runs)
$("*",elem).each(function () {
$this = $(this);
if ( $this.outerHeight() > t ) {
t_elem=this;
t=$this.outerHeight();
}
});
注意:
$("*",elem)
我不是在谈论
$("a,b,span")
过滤方式。我现在很好。