Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここで何かが足りないかどうかわかりません。同じ方法で複数のグローバル変数を実行したいのですが。下記参照
$('#pageMain .stuff, #pageMain .postFooter').each(function(){ $(this).vertCenter(); });
ただし、代わりにグローバル変数を使用します。
$main, $titles, $footers
だから...
$($main, $titles, $footers).each(). . .
each各jQueryオブジェクトを呼び出す必要があります。
each
$footers.each(function(){ ... }); $main.each(function(){ ... }); $titles.each(function(){ ... });
または、次のようにすることができます。
var aggregated = $footers.add($main).add($titles); aggregated.each(function() { ... });