アンロード内で onbeforeunload を実行するために、次のコードを作成しました。ただし、これは機能していないようです。私のコードの何が問題なのか、とにかくそれを機能させるために誰かが知っていますか?
$(window).unload(function () {
if ($('.submitAction').val() == "" && isChange) {
window.onbeforeunload = confirmExit;
}
});
function confirmExit() {
return "If you have made any changes to the fields without clicking the Save button, your changes will be lost. Are you sure you want to exit this page?";
}