0

我有一个具有is_reminder字段的事件模型。因此,当用户单击 dis 复选框时,应每 2-3 分钟向他显示一次通知。

我听说过 jnotify 插件,但我找不到任何在 Rails 中使用它的示例或教程......

我如何使用 jnotify 或任何其他方式来完成提醒功能?

4

1 回答 1

0

You don't clarify about is_remainder field, but to show a notification after 2/3 minutes after a checkbox click can be done like following:

$('ID_OR_CLASS_OF_YOUR_CHECKBOX').on('change', function() {

  setTimeout(function() {

     alert('you  have a notification');

  }, 1000 * 60 * 2); // here I set the time for 2 minutes

});
于 2012-05-07T09:35:45.140 回答