在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>
任何人都可以发布一个例子吗?