zepto阻止事件冒泡

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

$(".model").on("click",function(event){
	event.preventDefault();
	return false;		//子节点return false 能够阻止事件向上传递
});
相关文章
相关标签/搜索