jQuery .each() の次の要素に移動する方法はありますか?
$(".row").each( function() {
if ( ... )
//go to next iteration in .each()
});
ありがとう
jQuery .each() の次の要素に移動する方法はありますか?
$(".row").each( function() {
if ( ... )
//go to next iteration in .each()
});
ありがとう
これを試して:
$(".row").each( function() {
if ( ! ... ) {
... do everything else ...
}
});
または:
$(".row").each( function() {
if ( ... )
return; //go to next iteration in .each()
});
var rows = $(".row").each( function(idx) {
var nextRow = rows.eq(idx + 1);
});
匿名関数を終了して次の反復に進むには、戻る必要があります。
$(".row").each( function() {
if ( ... )
return; //go to next iteration in .each()
});