我开发了一个模态弹出窗口,当单击按钮时会弹出一个屏幕。
要么是 AddToBasketButton 点击事件,要么是 AskqlnkBtn 点击事件,它会打开窗口。
我的代码在 FireFox 中完美运行,但在 Internet Explorer / Chrome 中却不行。
运行代码时没有可见的 JavaScript 错误(据我所知)。
在旧浏览器中单击链接时,屏幕变暗,因此 loadPopup 必须以某种方式工作。
自己看问题:
如果你想体验我网站上的代码,你可以在这里看到。. 如果您点击“Læg i kurv”按钮,那么您可以自己尝试一下。
有什么想法可能是错的吗?我已经看了几个小时了,还是没有头绪!
我的代码:
function loadPopup() {
//loads popup only if it is disabled
if ($('#<%=bgPopup.ClientID %>').data("state") == 0) {
$('#<%=bgPopup.ClientID %>').css({
"opacity": "0.7"
});
$('#<%=bgPopup.ClientID %>').fadeIn("medium");
$('#<%=ReportError.ClientID%>').fadeIn("medium");
$('#<%=bgPopup.ClientID %>').data("state", 1);
}
}
function disablePopup() {
if ($('#<%=bgPopup.ClientID %>').data("state") == 1) {
$('#<%=bgPopup.ClientID %>').fadeOut("medium");
$('#<%=ReportError.ClientID %>').fadeOut("medium");
$('#<%=bgPopup.ClientID %>').data("state", 0);
}
}
function setOrdering() {
$("#contact-headline").text('Bestil produkt');
$("#contact-messagelbl").text('Evt. kommentar');
$('#<%=ContactTypeHiddenLbl.ClientID %>').val("bestil");
}
function setQuestions() {
$("#contact-headline").text('Stil spørgsmål');
$("#contact-messagelbl").text('Indtast dit spørgsmål');
$('#<%=ContactTypeHiddenLbl.ClientID %>').val("spørgsmål");
}
function centerPopup() {
$('#<%=ReportError.ClientID%>').center();
}
function resetContactControls() {
$('#<%=ContactMailBox.ClientID %>').val('');
$('#<%=ContactPhoneBox.ClientID %>').val('');
$('#<%=ReportMessageBox.ClientID %>').val('');
$('#<%=AskQuestionProductBtn.ClientID %>').show();
$('#contact-statuslbl').val('');
}
jQuery.fn.center = function () {
this.css("position", "absolute");
this.css("top", Math.max(0, (($(window).height() - this.outerHeight()) / 2) +
$(window).scrollTop()) + "px");
this.css("left", Math.max(0, (($(window).width() - this.outerWidth()) / 2) +
$(window).scrollLeft()) + "px");
return this;
};
$(document).ready(function() {
var mouseIsInside = true;
$('#<%=ReportError.ClientID%>').hover(function () {
mouseIsInside = true;
}, function () {
mouseIsInside = false;
});
$("body").mouseup(function () {
if (!mouseIsInside) {
disablePopup();
}
});
});
$('#<%=bgPopup.ClientID %>').data("state", 0);
$('#<%=AddToBasketButton.ClientID %>').click(function () {
resetContactControls();
centerPopup();
loadPopup();
setOrdering();
});
$('#<%=AskqlnkBtn.ClientID %>').click(function () {
resetContactControls();
centerPopup();
loadPopup();
setQuestions();
});
$('#<%=PopupCloseLnk.ClientID %>').click(function () {
disablePopup();
});
$(document).keypress(function (e) {
if (e.keyCode == 27) {
disablePopup();
}
});
$(window).resize(function () {
centerPopup();
});