私は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");