how to hide div with jquery when click anywhere except one div?
This question already has an answer here:
$("#search").blur(function(e){
e.stopPropagation()
$("#options").fadeOut("fast");
});
链接地址: http://www.djcxy.com/p/14708.html
上一篇: 检测输入之外的点击