21事件源.html 897 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #box {
  9. width: 300px;
  10. height: 300px;
  11. background: #00f;
  12. }
  13. #box1 {
  14. width: 150px;
  15. height: 150px;
  16. background: #0ff;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <!-- 事件源:事件的源头 -->
  22. <div id="box">
  23. <div id="box1"></div>
  24. </div>
  25. <script>
  26. var box = document.getElementById("box");
  27. var box1 = document.getElementById("box1");
  28. box.onclick = function(event){
  29. console.log(event);
  30. // alert("111");
  31. }
  32. box1.onclick = function(event) {
  33. // alert("222");
  34. event.stopPropagation();
  35. }
  36. </script>
  37. </body>
  38. </html>