0
當點擊瀏覽器滾動條時,我的彈出窗口關閉。 我用這個代碼關閉彈出:點擊瀏覽器滾動條關閉彈出框
//Closing the pop up when clicked outside of it.
$(document).click(function(e) {
$("#popup").mouseup(function() {
return false;
});
// Bind mouseup event to all the document
$(document).mouseup(function(e) {
// Check if the click is outside the popup
if($(e.target).parents("#popup").length==0 && !$(e.target).is("#popup") && $(e.target).parents(".calendar").length==0) {
// Hide the popup
alert("hi");
$("#popup").hide();
}
});
});
我的彈出窗口CSS是:
element.style {
display: block;
}
.popupDiv {
background: none repeat scroll 0 0 rgb(245, 245, 245);
border-width: 1px 1px 3px;
padding: 10px 10px 35px;
position: absolute;
right: 0;
top: 85px;
z-index: 999;
}
我需要彈出沒有關閉,當我點擊瀏覽器的滾動條上。
請添加上的jsfiddle你的代碼.... – Krish