1_index.html 634 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. #div1{
  10. width: 200px;
  11. height: 200px;
  12. background: aqua;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="div1">
  18. 123
  19. </div>
  20. <script>
  21. // console.log(666)
  22. // alert('请点击关闭')
  23. // var div1 = document.getElementById('div1')
  24. // div1.onclick = function(){
  25. // console.log('我是div1')
  26. // }
  27. </script>
  28. <script src="./index.js"></script>
  29. </body>
  30. </html>