扫码一下
查看教程更方便
for 循环是最复杂的循环形式。它包括以下三个重要部分 -
可以将这三个部分放在由分号分隔的一行中。
for (初始化; 测试条件; 迭代语句) {
// 被执行的代码块
}
尝试以下示例以了解for循环在 JavaScript 中的工作原理。
<html>
<body>
<script type = "text/javascript">
<!--
var count;
document.write("Starting Loop" + "<br />");
for(count = 0; count < 10; count++) {
document.write("Current Count : " + count );
document.write("<br />");
}
document.write("Loop stopped!");
//-->
</script>
</body>
</html>
输出结果如下:
Starting Loop
Current Count : 0
Current Count : 1
Current Count : 2
Current Count : 3
Current Count : 4
Current Count : 5
Current Count : 6
Current Count : 7
Current Count : 8
Current Count : 9
Loop stopped!