在stackoverflow中,如果您开始进行更改,然后尝试离开该页面,则会显示一个javascript确认按钮,并询问:“确定要离开此页面吗?” blee blah bloo ...
以前有人实施过此功能,如何跟踪所做的更改?我相信我自己可以做到,我正在尝试向您的专家学习良好做法。
我尝试了以下操作,但仍然无法正常工作:
<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>
有人可以举一个例子吗?