| 123456789101112131415161718192021 |
- <!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>
- <h1>你好</h1>
- <!-- -->
- <!-- js => JavaScript 交互逻辑 -->
- <script src="./index.js">
- // script标签里面写入js代码
- // 单行注释 ctrl + /
- /**
- * 多行注释
- * 在终端 node xx.js 回车
- */
- </script>
- </body>
- </html>
|