demo02.html 519 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <!-- js 使用
  7. 1. 内部
  8. 加script 标签
  9. 2. 外部
  10. <script src="../js/a.js"></script>
  11. -->
  12. </head>
  13. <body>
  14. <button id="btn1" >你好</button>
  15. </body>
  16. <!--&lt;!&ndash; 引入 中间不能包含js代码 &ndash;&gt;-->
  17. <!--<script src="../js/a.js"></script>-->
  18. </html>
  19. <script>
  20. //js代码
  21. let btn = document.getElementById("btn1");
  22. btn.onclick = function (){
  23. alert("hello world");
  24. }
  25. </script>