为什么 jquery fadein 只工作一次?

发布于 2024-12-17 09:17:40 字数 898 浏览 3 评论 0原文

我已经编写了自己的 ModalDialog 函数,并且弹出窗口仅工作一次。这是我的 ModalDialog 函数:

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 函数,因为我最后在函数内使用了 console.log 。那么为什么它只显示弹出窗口一次而不是第二次/第三次/第四次等等......?

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');

}

And here is the code that is in the script file that masterpage loads.

$(".error-notification").live('click', function () {
    $(this).fadeOut('fast', function () { $(this).remove(); });
});

Here is how I am calling the function.

ModalDialog('testingAjax', 'h', false);

I know the ModalDialog function is being called each time, because I used console.log inside the function at the very last. So why is it showing the popup only once and not second/third/fourth time etc...?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奢欲 2024-12-24 09:17:41

您将删除所有以前存在的弹出窗口:

$('.error-notification').remove();

它实际上显示了所有弹出窗口,但仅保留最后一个。
这是一个相关的小提琴: http://jsfiddle.net/BhU6F/3/

You are removing all previously existing popups:

$('.error-notification').remove();

It's actually showing them all, but keeping only the last one.
Here's a relevant fiddle: http://jsfiddle.net/BhU6F/3/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文