0

有没有办法使用 JQuery 本身检测 JQuery Noty 通知是否已关闭?

我的主页上有一条 Noty 通知。我想检测通知何时关闭。有人能帮忙吗?

注意:

var n = noty({
  layout: 'topCenter',
  theme: 'relax',
  type: 'information',
  force: false,
  text: 'This one worked',
  animation: {
    open: 'animated zoomIn', // Animate.css class names
    close: 'animated zoomOut', // Animate.css class names
  }
});
4

1 回答 1

1

在 Noty 中有一个叫做“回调”的方法。这就是我用它来检测关闭的方式:

var n = noty({
  layout: 'topCenter',
  theme: 'relax',
  type: 'information',
  force: false,
  text: 'This one worked',
  animation: {
    open: 'animated zoomIn', // Animate.css class names
    close: 'animated zoomOut', // Animate.css class names
  },
  callback: {
    onClose: function() {
      Cookies.set('ShowNoty', false);
    },
  },
});
于 2015-09-21T11:07:47.347 回答