在window.onbeforeunload上添加条件

时间:2015-01-05 09:49:56

标签: javascript jquery coffeescript

我有这段代码:

window.onbeforeunload = (e) ->
  e = e or window.event
  e.preventDefault = true
  e.cancelBubble = true
  e.returnValue = "You are not done yet with your Pleading Assembly."
  # if leave this page is click then
  #  notify
  return

我不知道什么行代码触发了“离开此页面”按钮。

按钮“离开此页面”即使我省略了这个

e.preventDefault = true
e.cancelBubble = true

我想要做的是提出一个条件,如果我点击“离开此页面”按钮,会发生一些事情(在我看来,我会通知用户)

但不幸的是,我根本不知道该怎么做。

0 个答案:

没有答案