提交更改时,如何显示“是否确实要离开此页面?”?
在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>
任何人都可以发布示例吗?