123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #box1 {
- width: 500px;
- height: 500px;
- background: #00f;
- }
- #box2 {
- width: 300px;
- height: 300px;
- background: #0f0;
- }
- #box3 {
- width: 100px;
- height: 100px;
- background: #f00;
- }
- </style>
- </head>
- <body>
- <div id="box1">
- <div id="box2">
- <div id="box3"></div>
- </div>
- </div>
- <script src="../js/5.事件冒泡.js"></script>
- </body>
- </html>
|