| 123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <script src="js/index.js"></script>
- </head>
- <!--
- body: 主要写html 代码
- style: 主要写css 代码
- script: 主要写JS 代码
- -->
- <body>
- </body>
- <script>
- // 打印内容
- // 如果js 代码比较少我们就直接在html 当中写就可以了
- // 但是如果js 代码比较多, 简易大家单独抽取一个js 文件
- // console.log("hello world")
- console.log(a)
- </script>
- </html>
|