do_stop_exit.js 332 B

123456789101112
  1. var go_save_zone = 0;
  2. function do_stop_exit() {
  3. window.onbeforeunload = function() {
  4. console.log(go_save_zone);
  5. data = document.getElementById('content').value;
  6. origin = document.getElementById('origin').value;
  7. if(data !== origin && go_save_zone != 1) {
  8. return '';
  9. }
  10. }
  11. }