条件を満たしている間処理を行う


動作ブラウザ 【 IE:4.0  NN:4.0
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows × - × × - -
Macintosh × - × × - -
UNIX - - - - - × × - - -
Dreamcast - - - - - - - - - - -

ポイント while (count < 10) { document.write(count); count++; }
説  明 条件を満たしている間処理するには「while(条件式){ 処理 }」のようにwhile命令を使います。この場合、条件によっては一度も実行されない事があります。最低限一回実行した後で条件判定を行うには「do { 処理 } while(条件式)」のように記述します。
サンプル <html> <head> <title>条件を満たしている間処理を行う</title> </head> <body> <script language="JavaScript"><!-- count = 0; while (count < 10) { document.write(count); count++; } // --></script> </body> </html>
補足説明 なし

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!

写真素材 PIXTA