12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- </style>
- </head>
- <body>
- <!--
- js => JavaScript
- 弱语言类型:数据决定类型 js
- 强语言类型: 类型决定数据 ts
- 1 => 数字
- "哈哈" => 字符串
- 引入:
- 1.js写在script标签中
- 2.外链引入
- -->
- <!-- <script>
- window.alert("弹出了");
- </script> -->
- <script src="./1.js的引入.js"></script>
- </body>
- </html>
|