1234567891011121314151617181920212223242526 |
- <!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: 400px;
- height: 400px;
- background: #00f;
- }
- #box2 {
- width: 200px;
- height: 200px;
- background: #000;
- }
- </style>
- </head>
- <body>
- <div id="box1">
- <div id="box2"></div>
- </div>
- <script src="../js/7.事件源.js"></script>
- </body>
- </html>
|