Prevent parent container click event from firing when hyperlink clicked

前端 未结 3 1655
無奈伤痛
無奈伤痛 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 22:44

    Thanks for the help.

    I was using jQuery but it's good to know a non-framework solution.

    Added the following for the links:

    $(".flink").click(function(e) {
        e.stopPropagation();
    });
    

提交回复
热议问题