JavaScript whil...LOGIN

JavaScript while 루프

JavaScript while 루프

지정된 조건이 true인 한 루프는 코드 블록을 계속 실행할 수 있습니다.

while 루프

while 루프는 지정된 조건이 true일 때 코드 블록을 반복합니다.

Syntax

while (condition)
{
실행할 코드
}

Example

이 예제의 루프는 변수 i가 5:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>

<p>点击下面的按钮,只要 i 小于 5 就一直循环代码块。</p>
<button onclick="myFunction()">点击这里</button>
<p id="demo"></p>
<script>
function myFunction(){
	var x="",i=0;
	do{
		x=x + "该数字为 " + i + "<br>";
	 i++;
	}
	while (i<5) 
	document.getElementById("demo").innerHTML=x;
}
</script>

</body>
</html>
보다 작은 한 계속 실행됩니다.다음 섹션
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p>点击下面的按钮,只要 i 小于 5 就一直循环代码块。</p> <button onclick="myFunction()">点击这里</button> <p id="demo"></p> <script> function myFunction(){ var x="",i=0; do{ x=x + "该数字为 " + i + "<br>"; i++; } while (i<5) document.getElementById("demo").innerHTML=x; } </script> </body> </html>
코스웨어