123456789101112131415161718192021222324 |
- <!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>
- <!--
- JS => JavaScript
- 弱语言类型
- 数据 决定 类型
- -->
- <!--
- 1.直接在html页面中添加script标签
- 2.在script标签中的src属性里去引入js页面路径
- -->
- <!-- <script>
- alert("这是一个弹框")
- </script> -->
- <script src="./index.js"></script>
- </body>
- </html>
|