哪些事件将捕获引导警报.hide()
我无法弄清我可以使用哪些事件来知道当警报被$('#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我找到了一个解决方案:)
OK I found a solution :)