continue

種  類 命令
書  式
continue

解  説
一番内側のループ/ブロックの先頭に戻ります。

コード
for (i=0; i<5; i++)
{
if (i == 2) continue;
alert(i);
}


■サンプルをダウンロードする >>.zip