私は以下のコードを持っています:
<html>
<head>
<title> Eloquent Javascript Ex 2 </title>
<script language = "javascript">
/*
function twoPowerTen()
{
var result = 1;
var counter = 0;
while( counter < 10 )
{
result = 2 * result;
document.writeln( result );
counter = counter + 1;
}
}
int limit = 1;
for( int y = 0; y < 5; y++ )
{
for( int x = 0; x < limit; x++ )
{
System.out.print( "*" );
}
System.out.println();
limit = limit + 1;
}
*/
function drawTriangle()
{
var limit = 1;
for( var y = 0; y < 5; y++ )
{
for( var x = 0; x < limit; x++ )
{
document.write( "*" );
}
document.write( "<br>" );
limit = limit + 1;
}
}
function whileDrawTriangle()
{
var limit = 1;
var x, y = 0;
while( y < 5 )
{
while( x < limit )
{
document.write( "*" );
x++;
}
limit = limit + 1;
y++;
}
}
</script>
</head>
<body>
<input type = "button" value = "Draw # Triangle" onClick = "whileDrawTriangle()" />
</body>
</html>
ボタンを押したときに実行したくないようです-画面にアスタリスクの三角形を出力すると思われます。ところで、HTML がうまく構築されていないことはわかっていますが、要点は基本的な JavaScript を実装することです。
どうしたの?