1. 程式人生 > >同一個頁面,多個script標籤中Javascript執行問題

同一個頁面,多個script標籤中Javascript執行問題

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<script>
    alert(a); // 在console窗口出現 ReferenceError: a is not defined
</script>
<script>
    alert(a); // 彈出undefined
    var a = 12;
    alert(a); // 彈出12
</script>
</body>
</html>

參考文章(javascript執行順序)

http://www.2cto.com/kf/201401/273825.html