$("#model_frame").on("click",function(){
	$(this).hide();
	console.log($(this));
});

$(".model").on("click",function(event){
	event.preventDefault();
	return false;		//子节点return false 可以阻止事件向上传递
});

  

相关文章:

  • 2021-06-21
  • 2022-12-23
  • 2021-12-17
  • 2021-12-17
猜你喜欢
  • 2021-12-17
  • 2021-08-29
  • 2021-10-01
相关资源
相似解决方案