在系统里使用了 toastr js 即时弹出后台通知。toastr 支持先后显示多个弹出消息,这点很好。然后我又加了自定义样式,使得消息通知更好看些。
文章来源:https://www.toymoban.com/news/detail-580357.html
我的想法是通知消息显示一段时间后关闭;也可点击关闭按钮,关闭通知并标记已读;或者点击通知消息中的链接查看通知相关的内容,同时关闭通知并标记已读。但通过 toast.clear 方法,不能成功的关闭消息框。文章来源地址https://www.toymoban.com/news/detail-580357.html
var _toastr_notifications = {};
var _toastr_notification = function(event) {
var type_key = event.type_key;
var options = {
"closeButton": true,
"iconClass": "toast-note",
"onCloseClick": function(toast) {
// ......
},
"onShown": function(toast) {
$('.toast a.' + type_key).click(function() {
var last_toastr = _toastr_notifications[type_key];
toastr.clear( last_toastr );
到了这里,关于toastr js clear 不成功的一个原因和解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!