123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- </head>
- <body>
- <!--
- -->
- <script>
- // {
- // 代码块
- // }
- // 全局
- var a = 6;
- // 局部
- function fn1() {
- var c = 1;
- console.log(c, "c");
- console.log(a, "a");
- }
- fn1();
- console.log(a, "a1");
- console.log(c, "c1");
- </script>
- </body>
- </html>
|