[ad_1]
私のアプリケーションでは、マスター ページにメニューがあります。 ユーザーがページで作業している場合、アプリケーションは確認を求め、保存せずに他の画面/ページに移動します。 「このページを保存せずに終了しますか?」のような確認メッセージが表示されるはずです。 これを行う可能性はありますか?
解決策 3
これを試して:
JavaScript
<script type="text/javascript"> window.onbeforeunload = confirmExit; function confirmExit() { return "Do you want to leave this page without saving?"; }
解決策 1
これを使って
————
XML
<script type="text/javascript" language="javascript"> window.onbeforeunload = function() { var Ans = confirm("Are you sure you want change page!"); if(Ans==true) return true; else return false; }; </script>
解決策 2
このjqueryを実行できます。 これは、クエリで参照できる完璧な例です。
http://api.jquery.com/unload/[^]
ボタンクリックイベントでこれを行いたい場合は、これを参照できます。
http://myclabs.github.io/jquery.confirm/
http://www.projectshadowlight.org/jquery-easy-confirm-dialog/[^]
解決策 5
window.onbeforeunload = function() {
return ‘このページを離れてもよろしいですか?’;
};
[ad_2]
コメント