📅  最后修改于: 2022-03-11 15:03:02.277000             🧑  作者: Mango
$(".yourButtonClass").on('click', function(event){
event.stopPropagation();
event.stopImmediatePropagation();
//(... rest of your JS code)
});