Skip to content

Instantly share code, notes, and snippets.

@jakeauyeung
Created July 31, 2014 11:11
Show Gist options
  • Save jakeauyeung/d8d42470b33545d2a19b to your computer and use it in GitHub Desktop.
Save jakeauyeung/d8d42470b33545d2a19b to your computer and use it in GitHub Desktop.
div外层点击关闭
// 弹层
document.onclick = function(e){
$('.product_info').removeClass('cur');
}
$('.product_info').click(function(e){
e = e||event; stopFunc(e);
});
$(".arrow-link").click(function(e) {
$('.product_info').toggleClass('cur');
e = e||event; stopFunc(e);
});
function stopFunc(e){
e.stopPropagation?e.stopPropagation():e.cancelBubble = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment