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>

arrow
arrow
    文章標籤
    javascript
    全站熱搜
    創作者介紹
    創作者 小甲學習地 的頭像
    小甲學習地

    學習資訊部落

    小甲學習地 發表在 痞客邦 留言(0) 人氣()