标签: jquery toastr
我使用toastr在我的页面中提供通知。如果单击链接,如何关闭所有打开的消息。
答案 0 :(得分:0)
检查您是否定义了toastr全局对象。
toastr
console.log(!!window.toastr);
如果你有,你可以使用toastr.clear();
toastr.clear();
$('a.myLinkClass').click(function() { window.toastr.clear(); });