123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #div1{
- width: 200px;
- height: 200px;
- background: red;
- }
- #div2{
- width: 100px;
- height: 100px;
- background: #ccc;
- }
- </style>
- </head>
- <body>
- <div id="div1">
- <div id="div2"></div>
- </div>
- <script>
- var div1 = document.getElementById('div1')
- var div2 = document.getElementById('div2')
- div1.addEventListener('click',function(){
- console.log(this)
- },true)
- div2.addEventListener('click',function(){
- console.log(this)
- },true)
- </script>
- </body>
- </html>
|