Prevent parent container click event from firing when hyperlink clicked

前端 未结 3 1662
無奈伤痛
無奈伤痛 2020-11-27 22:34

On my web page I have a list of files.

Each file is in it\'s own container div (div class=\"file\"). Inside the container is a link to the file and a description.

3条回答
  •  星月不相逢
    2020-11-27 23:06

    In the Microsoft model you must set the event’s cancelBubble property to true.

    window.event.cancelBubble = true;
    

    In the W3C model you must call the event’s stopPropagation() method.

    event.stopPropagation();
    

    Here's a cross-browser solution if you're not using a framework:

    function doSomething(e) {
        if (!e) e = window.event;
        e.cancelBubble = true;
        if (e.stopPropagation) e.stopPropagation();
    }
    

提交回复
热议问题