我正在使用pnotify这是一个很棒的插件,只是它一直未能关闭。下面是我的代码,我可以关闭通知大部分时间,但过了一会儿它就会失败而且关闭按钮会消失。
function send_msg(status,heading,message) {
var notice=new PNotify({
title: heading,
text: message,
type: status,
buttons: {
sticker: false
}
});
}
send_msg("success","Success","Successfully added");