1.js的引入.html 613 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. </style>
  9. </head>
  10. <body>
  11. <!--
  12. js => JavaScript
  13. 弱语言类型:数据决定类型 js
  14. 强语言类型: 类型决定数据 ts
  15. 1 => 数字
  16. "哈哈" => 字符串
  17. 引入:
  18. 1.js写在script标签中
  19. 2.外链引入
  20. -->
  21. <!-- <script>
  22. window.alert("弹出了");
  23. </script> -->
  24. <script src="./1.js的引入.js"></script>
  25. </body>
  26. </html>