如何确认导航离开页面

时间:2016-11-23 04:51:53

标签: javascript html dom onbeforeunload

我最近查找了如何执行此操作,并且方式花了太长时间才能找到它。所以,大家都去了,我正在分享如何进行“ARE YOU SURE YOU WANT TO LEAVE THIS PAGE?”对话。

1 个答案:

答案 0 :(得分:-1)

这真的很简单,最后......

<HTML>

<head>
</head>

<body onbeforeunload="return 'are you sure?';">
  hello...
  <a href="https://www.batalabs.tk">click to test</a>
</body </HTML>