each
我正在循环中处理一系列元素
function test(){
$('#first li').each(function(n){$(this).//here is the jQuery effects for nth li
\\ here I want to process nth li of id="second" too
});
我怎样才能同时处理另一个 id 的第 n 个元素?
例如,我想为li
DIV 的第一个 sfirst
和second
;制作 jQuery 效果。然后li
是两个 DIV 的第二个。
<div id="first">
<ul>
<li>something</li>
<li>something</li>
<li>something</li>
</ul>
</div>
<div id="second">
<ul>
<li>to be effect with 1st li of FIRST</li>
<li>to be effect with 2nd li of FIRST</li>
<li>to be effect with 3rd li of FIRST</li>
</ul>
</div>