1.js的引入.html 551 B

123456789101112131415161718192021222324
  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. </head>
  8. <body>
  9. <!--
  10. JS => JavaScript
  11. 弱语言类型
  12. 数据 决定 类型
  13. -->
  14. <!--
  15. 1.直接在html页面中添加script标签
  16. 2.在script标签中的src属性里去引入js页面路径
  17. -->
  18. <!-- <script>
  19. alert("这是一个弹框")
  20. </script> -->
  21. <script src="./index.js"></script>
  22. </body>
  23. </html>