我有一个JavaScript弹出窗口可以正常工作10次并停止显示。意思是当我点击名称链接时它显示正常。第二次工作正常。在第十一次尝试时,它无法弹出。它没有显示出来。如果我刷新页面并再次单击它会显示10次。这似乎是一些缓存问题。
function toggle(div_id) {
var el = document.getElementById(div_id);
if ( el.style.display == 'none' ) { el.style.display = 'block';}
else {el.style.display = 'none';}
}
function blanket_size(popUpDivVar) {
if (typeof window.innerWidth != 'undefined') {
viewportheight = window.innerHeight;
} else {
viewportheight = document.documentElement.clientHeight;
}
if ((viewportheight > document.body.parentNode.scrollHeight) && (viewportheight > document.body.parentNode.clientHeight)) {
blanket_height = viewportheight;
} else {
if (document.body.parentNode.clientHeight > document.body.parentNode.scrollHeight) {
blanket_height = document.body.parentNode.clientHeight;
} else {
blanket_height = document.body.parentNode.scrollHeight;
}
}
var blanket = document.getElementById('blanket');
blanket.style.height = blanket_height + 'px';
var popUpDiv = document.getElementById(popUpDivVar);
popUpDiv_height=blanket_height/2-200;//100 is half popup's height
popUpDiv.style.top = popUpDiv_height + 'px';
}
function window_pos(popUpDivVar) {
if (typeof window.innerWidth != 'undefined') {
viewportwidth = window.innerHeight;
} else {
viewportwidth = document.documentElement.clientHeight;
}
if ((viewportwidth > document.body.parentNode.scrollWidth) && (viewportwidth > document.body.parentNode.clientWidth)) {
window_width = viewportwidth;
} else {
if (document.body.parentNode.clientWidth > document.body.parentNode.scrollWidth) {
window_width = document.body.parentNode.clientWidth;
} else {
window_width = document.body.parentNode.scrollWidth;
}
}
var popUpDiv = document.getElementById(popUpDivVar);
window_width=window_width/2-250;//250 is half popup's width
popUpDiv.style.left = window_width + 'px';
}
function popup(windowname) {
blanket_size(windowname);
window_pos(windowname);
toggle('blanket');
toggle(windowname);
}
function doAjaxGet(alertId) {
$.ajax({
type : "GET",
url : "alerts/alertNotification.htm",
dataType : 'json',
data : "alertId=" + alertId,
success : function(response) {
$("#popUpDiv").remove();
$("#popUpDiv").append("<table>");
$("#popUpDiv").append("<tr><th>ID</th><th>Event Type</th><th>Process Name</th><th>Status</th><th>Notification Sent</th><th>Text</th></tr>");
$("#popUpDiv").append("<tr><td>" + response.alertId + "</td><td>" + response.eventTypeName + "</td><td>" + response.processName + "</td><td>" + response.status + "</td><td>" + response.notificationSent + "</td><td>" + response.comments + "</td></tr>");
$("#popUpDiv").append("</table>");
popup('popUpDiv');
},
error : function(e) {
alert('Error: ' + e);
}
});
}
$(document).ready(function() {
// Bind click event to a link
// Cancel the mouseup event in the popup
$("#popUpDiv").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("#popUpDiv").length==0 && !$(e.target).is("#popUpDiv")) {
// Hide the popup
$("#popUpDiv").slideUp("fast");
$("#blanket").slideUp("fast");
}
});
});
我的HTML是:
<td align="center"><input type="hidden" id="alertName" name="alertName${count}" value="${alert.alertName}" />
<label><a onclick="doAjaxGet(${alert.id})" href="#"><c:out value="${alert.alertName}"></c:out></a></label>
<div style="display: none;" id="blanket"></div>
<div style="display: none; background: none;" id="popUpDiv"></div>
</td>
答案 0 :(得分:0)
问题在于$("#popUpDiv").remove();
方法中的doAjaxGet
。它正在完全删除div,blanket_size(popUpDivVar)
将div变为null。我使用$("#popUpDiv").empty();
代替它,它运行良好。