在 stackoverflow 中,如果您开始进行更改然后尝试离开该页面,则会出现一个 javascript 确认按钮并询问:“您确定要离开该页面吗?” 呜呜呜呜呜...
有没有人以前实现过这个,我如何跟踪已提交的更改?我相信我自己可以做到这一点,我正在努力向专家们学习良好的做法。
我尝试了以下但仍然不起作用:
<html>
<body>
<p>Close the page to trigger the onunload event.</p>
<script type="text/javascript">
var changes = false;
window.onbeforeunload = function() {
if (changes)
{
var message = "Are you sure you want to navigate away from this page?\n\nYou have started writing or editing a post.\n\nPress OK to continue or Cancel to stay on the current page.";
if (confirm(message)) return true;
else return false;
}
}
</script>
<input type='text' onchange='changes=true;'> </input>
</body>
</html>
任何人都可以发布一个例子吗?