Skip to content

Instantly share code, notes, and snippets.

@wgm89
Created May 9, 2014 04:00
Show Gist options
  • Select an option

  • Save wgm89/a35003b585a84966a4b7 to your computer and use it in GitHub Desktop.

Select an option

Save wgm89/a35003b585a84966a4b7 to your computer and use it in GitHub Desktop.
点击 排除 某区域
$(document).click(function(e){
// Check if click was triggered on or within #menu_content
if( $(e.target).closest("#menu_content").length > 0 ) {
return false;
}
// Otherwise
// trigger your click function
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment