5.事件冒泡.html 708 B

123456789101112131415161718192021222324252627282930313233
  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: 500px;
  10. height: 500px;
  11. background: #00f;
  12. }
  13. #box2 {
  14. width: 300px;
  15. height: 300px;
  16. background: #0f0;
  17. }
  18. #box3 {
  19. width: 100px;
  20. height: 100px;
  21. background: #f00;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div id="box1">
  27. <div id="box2">
  28. <div id="box3"></div>
  29. </div>
  30. </div>
  31. <script src="../js/5.事件冒泡.js"></script>
  32. </body>
  33. </html>