1

不知道我是否在这里遗漏了什么。我想通过相同的方法运行多个全局变量。见下文

$('#pageMain .stuff, #pageMain .postFooter').each(function(){
    $(this).vertCenter();
});

而是使用全局变量:

$main, $titles, $footers

所以像...

$($main, $titles, $footers).each(). . .
4

1 回答 1

1

您需要调用each每个 jQuery 对象:

$footers.each(function(){ ... });
$main.each(function(){ ... });
$titles.each(function(){ ... });

或者,您可以执行以下操作:

var aggregated = $footers.add($main).add($titles);

aggregated.each(function() { ... }); 
于 2012-09-12T01:00:33.027 回答