Created
October 10, 2012 08:21
-
-
Save MaySnow/3863996 to your computer and use it in GitHub Desktop.
点击body隐藏某个模块,并防止事件冒泡
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("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