e.stopPropagation()

    1. <style>
    2. #parent{
    3. width: 200px;
    4. height: 200px;
    5. background-color: red;
    6. }
    7. #child{
    8. width: 100px;
    9. height: 100px;
    10. background-color: yellow;
    11. }
    12. </style>
    13. </head>
    14. <body>
    15. <div id="parent">
    16. <div id="child">
    17. </div>
    18. </div>
    19. <script>
    20. var parent=document.querySelector("#parent")
    21. var child=document.querySelector('#child')
    22. parent.onclick=function(){
    23. alert('parent')
    24. }
    25. child.onclick=function(e){
    26. alert('child')
    27. e.stopPropagation()
    28. }
    29. </script>