$(document).on('click', '.toggle,.show',function(){
$(".show").show();
return false;
});
$(document).on('click',function(){
$(".show").hide();
});
这样子就行了,原理就是:在toggle和show上绑定点击事件 return fasle;阻止这个事件冒泡到document所以下面的事件就不会覆盖掉上面的事件了
//点击选框的确定按钮时-阻止冒泡-关闭弹框
$(".button_sure1").click(function(e) {
$(".show").hide();
e.stopPropagation();
})