1_基础.html 648 B

1234567891011121314151617181920212223242526272829303132333435
  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: #000;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="div1">
  18. 123
  19. </div>
  20. javascript
  21. <!-- <script>
  22. console.log(123)
  23. alert('hahahah')
  24. var div1 = document.getElementById('div1')
  25. div1.onclick = function(){
  26. console.log('000')
  27. }
  28. console.log(123)
  29. </script> -->
  30. <script src="./1_基础.js"></script>
  31. </body>
  32. </html>