在StackOverflow中这样的Javascript中的是/否框?

Ber*_*rim 3 javascript

我想知道当用户试图离开页面时如何显示确认框,例如当您尝试关闭"提问"页面时,此处在StackOverflow中.

提前谢谢你.

Eri*_*sen 6

实际上,所有必要的是:

window.onbeforeunload = function(){ return "You should save your stuff."; }
Run Code Online (Sandbox Code Playgroud)

这也是一种骗局:如何显示"你确定要离开这个页面吗?" 什么时候改变?