Skip to content

Instantly share code, notes, and snippets.

@MaySnow
Created October 10, 2012 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaySnow/3863996 to your computer and use it in GitHub Desktop.
Save MaySnow/3863996 to your computer and use it in GitHub Desktop.
点击body隐藏某个模块,并防止事件冒泡
$("body").live("click",function(){
$(".toptask").hide();
});
//新建任务的模块防止事件冒泡
$(".toptask").live("click",function(event){
event.stopPropagation();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment