Created
July 31, 2014 11:11
-
-
Save jakeauyeung/d8d42470b33545d2a19b to your computer and use it in GitHub Desktop.
div外层点击关闭
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
// 弹层 | |
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