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