$("#model_frame").on("click",function(){
$(this).hide();
console.log($(this));
}); $(".model").on("click",function(event){
event.preventDefault();
return false; //子节点return false 可以阻止事件向上传递
});
2024-01-15 15:52:58
$("#model_frame").on("click",function(){
$(this).hide();
console.log($(this));
}); $(".model").on("click",function(event){
event.preventDefault();
return false; //子节点return false 可以阻止事件向上传递
});