Skip to content

Instantly share code, notes, and snippets.

@QETHAN
Created October 24, 2014 05:21
Show Gist options
  • Save QETHAN/d20bd98567c48c957b5f to your computer and use it in GitHub Desktop.
Save QETHAN/d20bd98567c48c957b5f to your computer and use it in GitHub Desktop.
js关闭弹窗
$(document).on('mouseup', function(e) {
if(!shareAddChanceTip.is(e.target) && shareAddChanceTip.has(e.target).length === 0){
shareAddChanceTip.hide();
}
if(!appAddChanceTip.is(e.target) && appAddChanceTip.has(e.target).length === 0){
appAddChanceTip.hide();
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment