test.html 739 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. <style>
  9. .box {
  10. width: 500px;
  11. height: 400px;
  12. margin: 50px auto;
  13. }
  14. .box .box-item {
  15. width: 100px;
  16. height: 100px;
  17. background-color: red;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="box">
  23. <div class="box-item">欧巴</div>
  24. </div>
  25. <script>
  26. document
  27. .querySelector('.box-item')
  28. .addEventListener('click', function (e) {
  29. console.log(e);
  30. });
  31. </script>
  32. </body>
  33. </html>