window.onbeforeunload - Web API 接口 | MDN https://developer.mozilla.org/zh-CN/docs/Web/API/Window/onbeforeunload…
1.显示当前时间 <body onload="showtime()"> <div>当前时间: <span id="clock"></span > </div> <script type="application/javascript"> function showtime()//创建函数 { var nowTime = new Date();//创建时间对象实例 var ho…
经常有这样的需求,就是在离开某个web页面时,用户不一定点注销,这样会导致会话不能及时销毁.为实现用户离开页面时,自动注销功能,需要在web页面的onbeforeunload事件处理函数中发送注销命令.这个地方大多用Ajax实现.有时还涉及到跨域访问的问题.这个地方就存在浏览器的兼容性问题. 浏览器在处理这个需求时的不兼容性有如下两点: 1.处理Ajax时的不兼容性,这里使用jQuery来解决. 2.在发送Ajax请求时的不兼容性 主要代码如下: function logout() { var…
如题! 直接贴代码了: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></titl…
function confirmQuit1() { if (ischanged) return 'it is changed !! '; else return 'no change .. '; } function why() { alert(ischanged ? "1" : "0"); } window.onbeforeunload = confirmQuit1; 1. 如果弹出窗口点击取消,那么ischanged值不会变化. 2. Firefox出于安全原因…
//在线阅读时间 function onlineRead(minutes){ var o= new Object(); o.courseId=courseId; o.userId=userId; o.onlineTime=minutes; var json=JSON.stringify(o); '){//非总部用户的在线阅读时长 $.ajax({ url:"/topsale/common/saveData.action?sqlName=train.insertOnline&paging=…
window.onbeforeunload方法在IE内核浏览器是有效的,但是在google浏览器中并不兼容,请教给位怎么在google浏览器中兼容window.onbeforeunload方法 采纳的答案 window.onbeforeunload = function (e) { e = e || window.event; // For IE and Firefox prior to version 4 if (e) { e.returnValue = '确定退出吗?'; } // For…
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <script type="text/javascript"> window…
window.onunload=function(){ //不可以阻止浏览器的刷新或者关闭 return false; } window.onbeforeunload=function(){ //可以阻止浏览器的刷新或者关闭 return false; } window.onclose貌似不会触发浏览器关闭事件... 参考: http://blog.sina.com.cn/s/blog_995c1f630101a9el.html http://www.dslreports.com/forum/r…
今天在解决一个问题,怎么也找不到解决方案.我的一个窗体是IE通过window.showModalDialog()打开的,但为了防止用户手工输的地址,所以我需要判断是通过别的页面调整获得,用Request.UrlReferrer判断,在IE下其值却为null,chrome是正确的,在IE下每次打开页面都提示重新登录,这我就郁闷了,我搜索了很多文档,又说location.herf打开的页面Request.UrlReferrer==null,却很少提window.showModalDialog()打开…
前台代码: var start; var end; var state; var lasturl = document.referrer; start = new Date($.ajax({ async: false }).getResponseHeader("Date"));//start是用户进入页面时间,此当前时间为服务器时间主要是处理客户端本地机器时间错误问题 $(document).ready(function () {//用户页面加载完毕 $(window).unload(…
有两个页面也个 Default1.aspx   另外一个是 Default2.aspx Default1.aspx 有个按钮是用来打开Default2.aspx页面的 按钮的js代码是 var win = window.showModalDialog("Default2.aspx"); alert(win); Default2.aspx 在页面的onload 事件中加入  window.returnValue = '11111'; 那么当我们关闭 Default2.aspx页面的时候就…
1.html页面代码: <div id="component" style="width:100%;height:100%"> <body> <div id="component" style="width:100%;height:100%"> <script type="text/javascript"> Ext.onReady(function () {…
1.关闭 当前页面 window.opener = null; window.open('', '_self', ''); window.close(); 但是在FF中就是不行: 2.项目中情况是通过 a 链接,target='blank' 打开的,发现在父窗口可以关闭当前页面的.实际情况中,父窗口是给第3方的,所以考虑当前页面关闭 发现下面代码,在FF中可以 window.parent.close() 对于直接打开的,FF还是没找到办法关闭,希望对你有所帮助…
页面1 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <form action=""> <div id="name1"> <h1>哈哈<…
今天早上我发现一个问题,当一个网页的地址最后面是一个#时(比如:http://www.baidu.com/go.asp#), 执行:window.location.replace(window.location.href); 浏览器不刷新页面. 经过测试: window.location.href = window.location.href; 浏览器也不刷新页面. 经过测试:window.location.reload() ; 浏览器会刷新页面. 以前经过一些测试发现 window.locat…
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无题</title> <!--zhaoxiaoyang.cnblogs.com/--> </head> <body onUnload=stay()><!--//页面卸载的时候,调用st…
1.定义 frames[]是窗口中所有命名的框架组成的数组.这个数组的每个元素都是一个Window对象,对应于窗口中的一个框架. 2.用法 假设iframe 是一个以存在的 iframe 的 ID 和 NAME 值,获取iframe的方法有: document.getElementById(“iframe”);  (获取的是 iframe 元素,可改变iframe的 src 或者 border , scrolling 等 attributes) window.frames[“iframe”]; …
先引述一段jQuery 官方对于onunload的评述: The unload event is sent to the window element when the user navigates away from the page. This could mean one of many things. The user could have clicked on a link to leave the page, or typed in a new URL in the address…
http://364434006.iteye.com/blog/1671907 —————————————————————————————————————————————————————————————————————— 解决方案:将被加载页面中的body标签删掉. 说明:window.dialog.tab都是panel,加载内容的方式都有硬编码和通过url来加载外部html片段,这里html片段就是body标签里面的代码. 详细参见: http://easyui.btboys.com/post…
浏览器处于安全策略考虑,只允许Javascript关闭由javascript打开的页面,为了用js关闭当前窗口,我们可以这么考虑,这也是最常用的做法. <a href="javascript:;" onclick='xx()'>fdsafas</a> function xx(){ // 重置window.opener用来获取打开当前窗口的窗口引用 // 这里置为null,避免IE下弹出关闭页面确认框 window.opener = null; // JS重写当前…
window.location对象的属性: 属性 含义 值 location.protocol 协议 "http://"或"https://" location.hostname 服务器名字 "baidu.com" location.port 端口 "8080" location.pathname URL中主机名后的部分 "/index.php" location.search "?"后…
最近工作中有个需求:点击按钮时打开一个页面,此处取名为page1,打开页面的前提条件是如果有人已经打开过page1页面并且没有关闭时请求ajax判断session是否为空,如果为空则将用户名和文档id存入session,如果不为空则提示已有人打开此页面. $(function(){ addassbutton('_FORM_PF_sp_f22860'); function addassbutton(textid){ $('#'+textid).after("<br/><input…
解决方法: 使用    window.location.href=window.location.href+随机数    代替 window.location.reload(). function reload(){ window.location.href=window.location.href+"?id="+10000*Math.random();}…
chrome浏览器插件window resizer可以调整当前浏览器分辨率大小 可以自定义大小,以适合于andorid和iphone设备…
function GetQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = decodeURI(window.location.search.substr(1)).match(reg); if (r != null)return unescape(r[2]); return null; } var sname = GetQuer…
function reload(){ window.location.href=window.location.href+"?id="+10000*Math.random(); }…
刷新当前页 window.location.href=window.location.href; 或者 window.location.href="当前URL",例如 window.location.href="http://www.hao123.com/indexnt.html"; PS:如果不考虑window.location.href,可以直接使用 window.location.reload();刷新…
function test(){ var winObj = window.open(URL); var loop = setInterval(function(){ if(winObj.closed){ clearInterval(loop); parent.location.reload(); } },1); }…
今天同事发现一个问题,在我做的控件中,点击tab切换的时候,IE上会触发他页面上的onbeforeunload的事件.一开始以为是我控件上事件导致的,但是当我把所有的绑定事件取消以后,问题依然存在.我就已经断定是a标签的问题了,但是问题原因不是很清楚.于是在网上搜了一下,得到了相应的答案: a标签在点击事件时的执行顺序:onclick->window.onbeforeunload->href   知道了事件的执行顺序以后,那么解决起来就很简单了,直接在绑定的函数后面return false即可…