如何使用jQuery单击锚点关闭所有toastr消息?

时间:2017-11-25 14:30:26

标签: jquery toastr

我使用toastr在我的页面中提供通知。如果单击链接,如何关闭所有打开的消息。

1 个答案:

答案 0 :(得分:0)

检查您是否定义了toastr全局对象。

console.log(!!window.toastr);

如果你有,你可以使用toastr.clear();

$('a.myLinkClass').click(function() {
   window.toastr.clear();
});