I ve coded my own ModalDialog function, and the popup is working only once. Here s my ModalDialog function:
function ModalDialog(button, text, fadeOut) {
$( .error-notification ).remove();
var x = "#" + button;
var $err = $( <div> ).addClass( error-notification )
.html(text)
.css( left , $(x).position().left);
$(x).after($err);
$err.fadeIn( slow );
if (fadeOut == true) {
setTimeout(function() {
$err.fadeOut()
}, 3000);
}
//$err.delay(0).fadeOut( slow );
}
这里是纸面文件上载荷的代码。
$(".error-notification").live( click , function () {
$(this).fadeOut( fast , function () { $(this).remove(); });
});
在这方面,我是这样说的。
ModalDialog( testingAjax , h , false);
我知道,由于我使用奥塞罗语,每次都叫ModalDialog功能。 最后一次在职能中记录。 因此,它为什么只显示一次,而不是第二次/第三次/第四次时间......?