JavaScript prevent bubbling event

$(".modal .modal-content").click(function (event) {
        event.preventDefault();
        event.stopPropagation();
        return false;
    });

 

Guess you like

Origin www.cnblogs.com/hool/p/11909908.html