ここ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>
誰かが例を投稿できますか?