if( 式 ) { 文1 } else { 文2 } |
a == b |
if( a == b && c > 0 ) { Name = "Taro"; } else { Name = "Yamada"; } |
<SCRIPT TYPE="text/JavaScript"> <-- var i; for( i = 1 ; i <= 10 ; i++ ) { // (1) if( i % 2 == 1 ) { // (2) // 赤色で奇数表示 document.write( "<FONT COLOR='#FF0000'>", i ); document.write( "</FONT><BR>" ); } else { // 青色で偶数表示 document.write( "<FONT COLOR='#0000FF'>", i ); document.write( "</FONT><BR>" ); } } //--> </SCRIPT> |
document.write( "a" , "b" , "c" ); document.write( "a" + "b" + "c" ); |
switch( p ) { case p1: 文1 break; case p2: 文2 break; default: 文3 break; } |
<SCRIPT TYPE="text/JavaScript"> <-- var i; for( i = 1 ; i <= 10 ; i++ ) { // (1) switch( i % 2 ) { // (2) case 0: // (3) document.write( "<FONT COLOR='#FF0000'>", i ); document.write( "</FONT><BR>" ); break; case 1: document.write( "<FONT COLOR='#0000FF'>", i ); document.write( "</FONT><BR>" ); break; } } //--> </SCRIPT> |
for( 式1 ; 式2 ; 式3 ) { 文 } |
for( i = 0 ; i <= 100 ; i++; ) { j = j + 1; } |
while( i <= 100 ) { i++; j = j + 1; } |
<SCRIPT TYPE="text/JavaScript"> <!-- var i, j; for( i = 0 ; i < 10 ; i++ ) { for( j = 0 ; j < i ; j++ ) { // (1) document.write( "*" ); } document.write( "<BR>" ); // (2) //--> </SCRIPT> |