当页面关闭或刷新时提示用户

需求:

1、当页面关闭或刷新时提示用户是否已保存;

2、页面中的某些ajax操作成功后,如果需要刷新(window.location.reload())页面,但不需要提示用户是否已保存。

解决方法:

1)在页面加载后注册onbeforeunload事件,页面关闭前和刷新前都会触发onbeforeunload事件:

//注册页面刷新和关闭提醒事件
 window.onbeforeunload = function () {
        return "请确认信息是否已保存!";
 };

2)在相应的ajax 回调函数刷新操作前将onbeforeunload事件设置为空:

1 window.onbeforeunload = null;
2 setTimeout("window.location.reload()", 1000);
3 window.showMsgBoxInfo("修改成功,正在刷新当前页面...");
时间: 2024-10-12 16:24:02

当页面关闭或刷新时提示用户的相关文章

页面关闭或刷新时触发javascript的事件

当页面在关闭或刷新时提示 window.onbeforeunload(function(){ //判断是关闭还是刷新 1.满足关闭,否则是刷新 if(event.clientX>document.body.clientWidth && event.clientY < 0 || event.altKey){ //关闭时怎么处理 }else{ //刷新时怎么处理 } }): 触发条件: 1.关闭浏览器窗口2.通过地址栏或收藏夹前往其他页面的时候3.点击返回,前进,刷新,主页其中一个

微信子页面关闭后刷新父页面

前段时间开发微信公众号时,需要用到从编辑页面点击保存后,跳转到列表页面后并刷新,网上找了好多 function f_close(){ if(typeof(WeixinJSBridge)!="undefined"){ //WeixinJSBridge.call('closeWindow'); history.go(-1); }else{ if (navigator.userAgent.indexOf("MSIE") > 0) { if (navigator.us

页面刷新前提示用户_js刷新事件

document.body.onbeforeunload = function (event)     {         var c = event || window.event;         if (/webkit/.test(navigator.userAgent.toLowerCase())) {             return "离开页面将导致数据丢失!";         }         else         {             c.return

当页面返回不刷新时进行强制刷新

disableBFCacheBeforeHistoryTravel: function() { // https://www.google.com/search?q=BFCache // 情景:将要跳转到某一被 BFCache 了的页面,希望该页面强制刷新 // 用法:在 history.go() history.back() 之前调用此方法 localStorage.setItem('bfcache_disable', true); }, preventBFCacheOnCurrentPage

js页面关闭或者刷新的判断

<HTML>  <HEAD>  <title>页面刷新</title>  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="content-type" content="text/html;charset=utf-8"> </HEAD>

JS实现 页面提交防刷新等待提示

1 //关闭等待窗口 2 function closediv() { 3 //Close Div 4 document.body.removeChild(document.getElementById("bgDiv")); 5 document.getElementById("msgDiv").removeChild(document.getElementById("msgTitle")); 6 document.body.removeChild

APP长时间处于后台,再次调用时提示用户重新登录

第一步:当应用被处于后台时,调用计时器的start()方法,开始计时 在所有Activity继承的BaseSwiBackAct中的 public void onStop() { EventBus.getDefault().unregister(this); OneTimerFactory.getTimer().start(); super.onStop(); } 第二步:当用户重新唤醒应用时,弹出对话框 protected void onStart() { //a是判断是否登录失效的标志位 if

黄聪:WordPress 后台发布文章时提示用户选择分类

很多用户在后台发布文章,常常会忘记选择分类,所以很有必要添加一个提醒功能,如果没有选择分类,点击发布时,就显示一个提示信息.要实现这个功能,只要将下面的代码添加到主题的 functions.php 即可: /** * WordPress 发布文章前必须选择分类 * http://www.wpdaxue.com/choose-a-category-before-publish.html */ add_action('admin_footer-post.php', 'choose_a_categor

js window.open()打开的页面关闭后刷新父页面

function test(){ var winObj = window.open(URL); var loop = setInterval(function(){ if(winObj.closed){ clearInterval(loop); parent.location.reload(); } },1); }