7.事件源.html 553 B

1234567891011121314151617181920212223242526
  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. #box1 {
  9. width: 400px;
  10. height: 400px;
  11. background: #00f;
  12. }
  13. #box2 {
  14. width: 200px;
  15. height: 200px;
  16. background: #000;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div id="box1">
  22. <div id="box2"></div>
  23. </div>
  24. <script src="../js/7.事件源.js"></script>
  25. </body>
  26. </html>