哪些事件将捕获引导警报.hide()

发布于 2025-01-23 06:53:03 字数 230 浏览 0 评论 0原文

我无法弄清我可以使用哪些事件来知道当警报被$('#alert')隐藏时,hide(); 捕获的唯一方法是如果我使用.close()。 但是我确实需要使用.hide(),我需要知道何时发生。

如果使用$(“。alert”)。close() - $(“。alert”)。on('cleast.bs.alert')工作正常,但我需要使用 $(“。警报”)。hide('fast'); BS不会为此暴露事件 - VJS活动将有哪些工作?

I can't figure out what event I could use to know when alert gets hidden by $('#alert').hide();
The only way to capture that is if I use .close().
But I really need to use .hide() and I need to know when that happens.

If using $(".alert").close() - $(".alert").on('closed.bs.alert') works fine but I need to use
$(".alert").hide('fast'); And BS doesn't expose event for that - what VJS event would do the job?

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

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

发布评论

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

评论(1

深居我梦 2025-01-30 06:53:03

好的,我找到了一个解决方案:)

    $(".alert").on("close.bs.alert", function () {
        // DO EVERYTHING YOU NEED
        $("#"+this.id).hide('fast');
        return false;
    });

OK I found a solution :)

    $(".alert").on("close.bs.alert", function () {
        // DO EVERYTHING YOU NEED
        $("#"+this.id).hide('fast');
        return false;
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文