close
一、while(){} 與 do{ }while()
1. while(){}:迴圈是開頭檢查
2. do{ }while():迴圈是結尾檢查
二、程式範例如下:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文件</title>
<script language="javascript">
var i=1;
while(i<=5){
document.write(i+"<br/>");
i++;
}
document.write("===============<br/>");
var x=1;
do{
document.write(x+"<br/>");
x++;
}while(x<=5);
</script>
</head>
<body>
</body>
</html>
文章標籤
全站熱搜
留言列表