我有定期进行活动的 JavaScript。当用户不看站点时(即窗口或选项卡没有焦点),最好不要运行。
有没有办法使用 JavaScript 做到这一点?
我的参考点:如果您使用的窗口不活动,Gmail Chat 会播放声音。
requestAnimationFrame
API,或使用现代功能,即在窗口不可见时降低 setTimeout
/setInterval
的频率(Chrome 中为 1 秒,对于例子)。
blur
/focus
事件...虽然这将是有限的使用,因为窗口可以是非活动的但完全或部分可见(还有人们希望继续更新的某些任务栏中的“预览”图标)。
自从最初编写此答案以来,由于 W3C,新规范已达到推荐状态。 Page Visibility API(在 MDN 上)现在允许我们更准确地检测页面何时对用户隐藏。
document.addEventListener("visibilitychange", onchange);
当前浏览器支持:
铬 13+
互联网浏览器 10+
火狐 10+
Opera 12.10+ [阅读笔记]
以下代码回退到不兼容浏览器中不太可靠的模糊/聚焦方法:
(function() {
var hidden = "hidden";
// Standards:
if (hidden in document)
document.addEventListener("visibilitychange", onchange);
else if ((hidden = "mozHidden") in document)
document.addEventListener("mozvisibilitychange", onchange);
else if ((hidden = "webkitHidden") in document)
document.addEventListener("webkitvisibilitychange", onchange);
else if ((hidden = "msHidden") in document)
document.addEventListener("msvisibilitychange", onchange);
// IE 9 and lower:
else if ("onfocusin" in document)
document.onfocusin = document.onfocusout = onchange;
// All others:
else
window.onpageshow = window.onpagehide
= window.onfocus = window.onblur = onchange;
function onchange (evt) {
var v = "visible", h = "hidden",
evtMap = {
focus:v, focusin:v, pageshow:v, blur:h, focusout:h, pagehide:h
};
evt = evt || window.event;
if (evt.type in evtMap)
document.body.className = evtMap[evt.type];
else
document.body.className = this[hidden] ? "hidden" : "visible";
}
// set the initial state (but only if browser supports the Page Visibility API)
if( document[hidden] !== undefined )
onchange({type: document[hidden] ? "blur" : "focus"});
})();
onfocusin
和 onfocusout
是 required for IE 9 and lower,而所有其他都使用 onfocus
和 onblur
,但 iOS 除外,它使用 onpageshow
和 onpagehide
。
我会使用 jQuery,因为你所要做的就是:
$(window).blur(function(){
//your code here
});
$(window).focus(function(){
//your code
});
或者至少它对我有用。
window
将失去焦点,这是正确的,但取决于您的意图可能不是您需要的。
有 3 种典型的方法用于确定用户是否可以看到 HTML 页面,但是它们都不能完美地工作:
W3C Page Visibility API 应该做到这一点(支持自:Firefox 10、MSIE 10、Chrome 13)。但是,此 API 仅在浏览器选项卡被完全覆盖时引发事件(例如,当用户从一个选项卡更改为另一个选项卡时)。当无法以 100% 的准确度确定可见性时,API 不会引发事件(例如,Alt+Tab 切换到另一个应用程序)。
使用基于焦点/模糊的方法会给您带来很多误报。例如,如果用户在浏览器窗口的顶部显示一个较小的窗口,浏览器窗口将失去焦点(onblur 引发)但用户仍然能够看到它(因此仍然需要刷新)。另请参阅 http://javascript.info/tutorial/focus
依赖用户活动(鼠标移动、点击、键入键)也会给您带来很多误报。考虑与上述相同的情况,或者用户正在观看视频。
为了改善上述不完美的行为,我使用了 3 种方法的组合:W3C Visibility API,然后是 focus/blur 和用户活动方法,以降低误报率。这允许管理以下事件:
将浏览器选项卡更改为另一个(100% 准确,感谢 W3C 页面可见性 API)
页面可能被另一个窗口隐藏,例如由于 Alt+Tab(概率 = 不是 100% 准确)
用户注意力可能没有集中在 HTML 页面上(概率 = 不是 100% 准确)
它是这样工作的:当文档失去焦点时,会监视文档上的用户活动(例如鼠标移动)以确定窗口是否可见。页面可见概率与页面上最后一次用户活动的时间成反比:如果用户长时间没有在文档上进行任何活动,则页面很可能是不可见的。下面的代码模仿了 W3C Page Visibility API:它的行为方式相同,但误报率很小。它具有多浏览器的优势(在 Firefox 5、Firefox 10、MSIE 9、MSIE 7、Safari 5、Chrome 9 上测试)。
<div id="x"></div>
<script>
/**
Registers the handler to the event for the given object.
@param obj the object which will raise the event
@param evType the event type: click, keypress, mouseover, ...
@param fn the event handler function
@param isCapturing set the event mode (true = capturing event, false = bubbling event)
@return true if the event handler has been attached correctly
*/
function addEvent(obj, evType, fn, isCapturing){
if (isCapturing==null) isCapturing=false;
if (obj.addEventListener){
// Firefox
obj.addEventListener(evType, fn, isCapturing);
return true;
} else if (obj.attachEvent){
// MSIE
var r = obj.attachEvent('on'+evType, fn);
return r;
} else {
return false;
}
}
// register to the potential page visibility change
addEvent(document, "potentialvisilitychange", function(event) {
document.getElementById("x").innerHTML+="potentialVisilityChange: potentialHidden="+document.potentialHidden+", document.potentiallyHiddenSince="+document.potentiallyHiddenSince+" s<br>";
});
// register to the W3C Page Visibility API
var hidden=null;
var visibilityChange=null;
if (typeof document.mozHidden !== "undefined") {
hidden="mozHidden";
visibilityChange="mozvisibilitychange";
} else if (typeof document.msHidden !== "undefined") {
hidden="msHidden";
visibilityChange="msvisibilitychange";
} else if (typeof document.webkitHidden!=="undefined") {
hidden="webkitHidden";
visibilityChange="webkitvisibilitychange";
} else if (typeof document.hidden !=="hidden") {
hidden="hidden";
visibilityChange="visibilitychange";
}
if (hidden!=null && visibilityChange!=null) {
addEvent(document, visibilityChange, function(event) {
document.getElementById("x").innerHTML+=visibilityChange+": "+hidden+"="+document[hidden]+"<br>";
});
}
var potentialPageVisibility = {
pageVisibilityChangeThreshold:3*3600, // in seconds
init:function() {
function setAsNotHidden() {
var dispatchEventRequired=document.potentialHidden;
document.potentialHidden=false;
document.potentiallyHiddenSince=0;
if (dispatchEventRequired) dispatchPageVisibilityChangeEvent();
}
function initPotentiallyHiddenDetection() {
if (!hasFocusLocal) {
// the window does not has the focus => check for user activity in the window
lastActionDate=new Date();
if (timeoutHandler!=null) {
clearTimeout(timeoutHandler);
}
timeoutHandler = setTimeout(checkPageVisibility, potentialPageVisibility.pageVisibilityChangeThreshold*1000+100); // +100 ms to avoid rounding issues under Firefox
}
}
function dispatchPageVisibilityChangeEvent() {
unifiedVisilityChangeEventDispatchAllowed=false;
var evt = document.createEvent("Event");
evt.initEvent("potentialvisilitychange", true, true);
document.dispatchEvent(evt);
}
function checkPageVisibility() {
var potentialHiddenDuration=(hasFocusLocal || lastActionDate==null?0:Math.floor((new Date().getTime()-lastActionDate.getTime())/1000));
document.potentiallyHiddenSince=potentialHiddenDuration;
if (potentialHiddenDuration>=potentialPageVisibility.pageVisibilityChangeThreshold && !document.potentialHidden) {
// page visibility change threshold raiched => raise the even
document.potentialHidden=true;
dispatchPageVisibilityChangeEvent();
}
}
var lastActionDate=null;
var hasFocusLocal=true;
var hasMouseOver=true;
document.potentialHidden=false;
document.potentiallyHiddenSince=0;
var timeoutHandler = null;
addEvent(document, "pageshow", function(event) {
document.getElementById("x").innerHTML+="pageshow/doc:<br>";
});
addEvent(document, "pagehide", function(event) {
document.getElementById("x").innerHTML+="pagehide/doc:<br>";
});
addEvent(window, "pageshow", function(event) {
document.getElementById("x").innerHTML+="pageshow/win:<br>"; // raised when the page first shows
});
addEvent(window, "pagehide", function(event) {
document.getElementById("x").innerHTML+="pagehide/win:<br>"; // not raised
});
addEvent(document, "mousemove", function(event) {
lastActionDate=new Date();
});
addEvent(document, "mouseover", function(event) {
hasMouseOver=true;
setAsNotHidden();
});
addEvent(document, "mouseout", function(event) {
hasMouseOver=false;
initPotentiallyHiddenDetection();
});
addEvent(window, "blur", function(event) {
hasFocusLocal=false;
initPotentiallyHiddenDetection();
});
addEvent(window, "focus", function(event) {
hasFocusLocal=true;
setAsNotHidden();
});
setAsNotHidden();
}
}
potentialPageVisibility.pageVisibilityChangeThreshold=4; // 4 seconds for testing
potentialPageVisibility.init();
</script>
由于目前没有没有误报的跨浏览器解决方案,您最好三思而后行禁用您网站上的定期活动。
document.addEventListener( 'visibilitychange' , function() {
if (document.hidden) {
console.log('bye');
} else {
console.log('well back');
}
}, false );
我可以使用吗? http://caniuse.com/#feat=pagevisibility
GitHub 上有一个简洁的库:
https://github.com/serkanyersen/ifvisible.js
例子:
// If page is visible right now
if( ifvisible.now() ){
// Display pop-up
openPopUp();
}
我已经在我拥有的所有浏览器上测试了 1.0.1 版,并且可以确认它适用于:
IE9、IE10
法郎 26.0
铬 34.0
...可能还有所有较新的版本。
不完全适用于:
IE8 - 始终指示选项卡/窗口当前处于活动状态(.now() 始终为我返回 true)
我开始使用社区 wiki 答案,但意识到它没有在 Chrome 中检测到 alt-tab 事件。这是因为它使用了第一个可用的事件源,在这种情况下,它是页面可见性 API,在 Chrome 中似乎不跟踪 alt-tabbing。
我决定稍微修改脚本以跟踪页面焦点更改的所有可能事件。这是您可以放入的功能:
function onVisibilityChange(callback) {
var visible = true;
if (!callback) {
throw new Error('no callback given');
}
function focused() {
if (!visible) {
callback(visible = true);
}
}
function unfocused() {
if (visible) {
callback(visible = false);
}
}
// Standards:
if ('hidden' in document) {
visible = !document.hidden;
document.addEventListener('visibilitychange',
function() {(document.hidden ? unfocused : focused)()});
}
if ('mozHidden' in document) {
visible = !document.mozHidden;
document.addEventListener('mozvisibilitychange',
function() {(document.mozHidden ? unfocused : focused)()});
}
if ('webkitHidden' in document) {
visible = !document.webkitHidden;
document.addEventListener('webkitvisibilitychange',
function() {(document.webkitHidden ? unfocused : focused)()});
}
if ('msHidden' in document) {
visible = !document.msHidden;
document.addEventListener('msvisibilitychange',
function() {(document.msHidden ? unfocused : focused)()});
}
// IE 9 and lower:
if ('onfocusin' in document) {
document.onfocusin = focused;
document.onfocusout = unfocused;
}
// All others:
window.onpageshow = window.onfocus = focused;
window.onpagehide = window.onblur = unfocused;
};
像这样使用它:
onVisibilityChange(function(visible) {
console.log('the page is now', visible ? 'focused' : 'unfocused');
});
此版本侦听所有不同的可见性事件,并在其中任何一个导致更改时触发回调。 focused
和 unfocused
处理程序确保在多个 API 捕获相同的可见性更改时不会多次调用回调。
document.hidden
和 document.webkitHidden
。如果没有 if
构造中的 else
,我们会得到 2 个回调调用,对吗?
我为我的应用程序创建了一个 Comet Chat,当我收到来自另一个用户的消息时,我使用:
if(new_message){
if(!document.hasFocus()){
audio.play();
document.title="Have new messages";
}
else{
audio.stop();
document.title="Application Name";
}
}
document.hasFocus()
是最干净的方法。使用可见性 API 或基于事件的所有其他方法或寻找不同级别的用户活动/缺乏活动的所有其他方式都变得过于复杂,并且充满了边缘情况和漏洞。把它放在一个简单的间隔上,并在结果发生变化时引发自定义事件。示例:jsfiddle.net/59utucz6/1
这真的很棘手。鉴于以下要求,似乎没有解决方案。
该页面包含您无法控制的 iframe
无论是由 TAB 更改 (ctrl+tab) 还是窗口更改 (alt+tab) 触发的更改,您都希望跟踪可见性状态更改
发生这种情况是因为:
页面可见性 API 可以可靠地告诉您选项卡更改(即使使用 iframe),但它不能告诉您用户何时更改窗口。
只要 iframe 没有焦点,侦听窗口模糊/焦点事件就可以检测到 alt+tabs 和 ctrl+tabs。
鉴于这些限制,有可能实现一个结合 - 页面可见性 API - 窗口模糊/焦点 - document.activeElement 的解决方案
这能够:
1) 父页面有焦点时 ctrl+tab: YES
2) iframe 有焦点时 ctrl+tab: YES
3)当父页面有焦点时alt+tab:是
4) 当 iframe 有焦点时 alt+tab:NO <-- 无赖
当 iframe 具有焦点时,您的模糊/焦点事件根本不会被调用,并且页面可见性 API 不会在 alt+tab 上触发。
我以@AndyE 的解决方案为基础,并在此处实现了这个(几乎不错的)解决方案:https://dl.dropboxusercontent.com/u/2683925/estante-components/visibility_test1.html(对不起,我在使用 JSFiddle 时遇到了一些问题)。
这也可以在 Github 上找到:https://github.com/qmagico/estante-components
这适用于铬/铬。它适用于 Firefox,只是它不加载 iframe 内容(知道为什么吗?)
无论如何,要解决最后一个问题 (4),您可以这样做的唯一方法是在 iframe 上侦听模糊/焦点事件。如果你对 iframe 有一些控制,你可以使用 postMessage API 来做到这一点。
https://dl.dropboxusercontent.com/u/2683925/estante-components/visibility_test2.html
我还没有用足够多的浏览器对此进行测试。如果你能找到更多关于这不起作用的信息,请在下面的评论中告诉我。
var visibilityChange = (function (window) {
var inView = false;
return function (fn) {
window.onfocus = window.onblur = window.onpageshow = window.onpagehide = function (e) {
if ({focus:1, pageshow:1}[e.type]) {
if (inView) return;
fn("visible");
inView = true;
} else if (inView) {
fn("hidden");
inView = false;
}
};
};
}(this));
visibilityChange(function (state) {
console.log(state);
});
http://jsfiddle.net/ARTsinn/JTxQY/
这适用于我在 chrome 67、firefox 67、
if(!document.hasFocus()) {
// do stuff
}
这对我有用
document.addEventListener("visibilitychange", function() {
document.title = document.hidden ? "I'm away" : "I'm here";
});
演示:https://iamsahilralkar.github.io/document-hidden-demo/
在 HTML 5 中,您还可以使用:
onpageshow:当窗口可见时运行的脚本
onpagehide:隐藏窗口时运行的脚本
看:
https://developer.mozilla.org/en-US/docs/Web/Events/pageshow
https://developer.mozilla.org/en-US/docs/Web/Events/pagehide
这适用于所有现代浏览器:
更改选项卡时
更改窗口时(Alt+Tab)
从任务栏最大化另一个程序时
var eventName;
var visible = true;
var propName = "hidden";
if (propName in document) eventName = "visibilitychange";
else if ((propName = "msHidden") in document) eventName = "msvisibilitychange";
else if ((propName = "mozHidden") in document) eventName = "mozvisibilitychange";
else if ((propName = "webkitHidden") in document) eventName = "webkitvisibilitychange";
if (eventName) document.addEventListener(eventName, handleChange);
if ("onfocusin" in document) document.onfocusin = document.onfocusout = handleChange; //IE 9
window.onpageshow = window.onpagehide = window.onfocus = window.onblur = handleChange;// Changing tab with alt+tab
// Initialize state if Page Visibility API is supported
if (document[propName] !== undefined) handleChange({ type: document[propName] ? "blur" : "focus" });
function handleChange(evt) {
evt = evt || window.event;
if (visible && (["blur", "focusout", "pagehide"].includes(evt.type) || (this && this[propName]))){
visible = false;
console.log("Out...")
}
else if (!visible && (["focus", "focusin", "pageshow"].includes(evt.type) || (this && !this[propName]))){
visible = true;
console.log("In...")
}
}
你可以使用:
(function () {
var requiredResolution = 10; // ms
var checkInterval = 1000; // ms
var tolerance = 20; // percent
var counter = 0;
var expected = checkInterval / requiredResolution;
//console.log('expected:', expected);
window.setInterval(function () {
counter++;
}, requiredResolution);
window.setInterval(function () {
var deviation = 100 * Math.abs(1 - counter / expected);
// console.log('is:', counter, '(off by', deviation , '%)');
if (deviation > tolerance) {
console.warn('Timer resolution not sufficient!');
}
counter = 0;
}, checkInterval);
})();
稍微复杂一点的方法是使用 setInterval()
检查鼠标位置并与上次检查进行比较。如果鼠标在设定的时间内没有移动,则用户可能处于空闲状态。
这有一个额外的好处是告诉用户是否空闲,而不是仅仅检查窗口是否不活动。
正如许多人指出的那样,这并不总是检查用户或浏览器窗口是否空闲的好方法,因为用户甚至可能没有使用鼠标或正在观看视频等。我只是建议一种检查空闲的可能方法。
这是对 Andy E 答案的改编。
这将执行一项任务,例如每 30 秒刷新一次页面,但前提是页面可见且已聚焦。
如果无法检测到可见性,则将仅使用焦点。
如果用户关注页面,那么它将立即更新
页面不会在任何 ajax 调用后 30 秒后再次更新
var windowFocused = true;
var timeOut2 = null;
$(function(){
$.ajaxSetup ({
cache: false
});
$("#content").ajaxComplete(function(event,request, settings){
set_refresh_page(); // ajax call has just been made, so page doesn't need updating again for 30 seconds
});
// check visibility and focus of window, so as not to keep updating unnecessarily
(function() {
var hidden, change, vis = {
hidden: "visibilitychange",
mozHidden: "mozvisibilitychange",
webkitHidden: "webkitvisibilitychange",
msHidden: "msvisibilitychange",
oHidden: "ovisibilitychange" /* not currently supported */
};
for (hidden in vis) {
if (vis.hasOwnProperty(hidden) && hidden in document) {
change = vis[hidden];
break;
}
}
document.body.className="visible";
if (change){ // this will check the tab visibility instead of window focus
document.addEventListener(change, onchange,false);
}
if(navigator.appName == "Microsoft Internet Explorer")
window.onfocus = document.onfocusin = document.onfocusout = onchangeFocus
else
window.onfocus = window.onblur = onchangeFocus;
function onchangeFocus(evt){
evt = evt || window.event;
if (evt.type == "focus" || evt.type == "focusin"){
windowFocused=true;
}
else if (evt.type == "blur" || evt.type == "focusout"){
windowFocused=false;
}
if (evt.type == "focus"){
update_page(); // only update using window.onfocus, because document.onfocusin can trigger on every click
}
}
function onchange () {
document.body.className = this[hidden] ? "hidden" : "visible";
update_page();
}
function update_page(){
if(windowFocused&&(document.body.className=="visible")){
set_refresh_page(1000);
}
}
})();
set_refresh_page();
})
function get_date_time_string(){
var d = new Date();
var dT = [];
dT.push(d.getDate());
dT.push(d.getMonth())
dT.push(d.getFullYear());
dT.push(d.getHours());
dT.push(d.getMinutes());
dT.push(d.getSeconds());
dT.push(d.getMilliseconds());
return dT.join('_');
}
function do_refresh_page(){
// do tasks here
// e.g. some ajax call to update part of the page.
// (date time parameter will probably force the server not to cache)
// $.ajax({
// type: "POST",
// url: "someUrl.php",
// data: "t=" + get_date_time_string()+"&task=update",
// success: function(html){
// $('#content').html(html);
// }
// });
}
function set_refresh_page(interval){
interval = typeof interval !== 'undefined' ? interval : 30000; // default time = 30 seconds
if(timeOut2 != null) clearTimeout(timeOut2);
timeOut2 = setTimeout(function(){
if((document.body.className=="visible")&&windowFocused){
do_refresh_page();
}
set_refresh_page();
}, interval);
}
对于没有 jQuery 的解决方案,请查看 Visibility.js,它提供了有关三种页面状态的信息
visible ... page is visible
hidden ... page is not visible
prerender ... page is being prerendered by the browser
以及 setInterval 的便利包装器
/* Perform action every second if visible */
Visibility.every(1000, function () {
action();
});
/* Perform action every second if visible, every 60 sec if not visible */
Visibility.every(1000, 60*1000, function () {
action();
});
旧浏览器(IE < 10;iOS < 7)的后备方案也可用
对于 angular.js,这是一个指令(基于接受的答案),它将允许您的控制器对可见性的变化做出反应:
myApp.directive('reactOnWindowFocus', function($parse) {
return {
restrict: "A",
link: function(scope, element, attrs) {
var hidden = "hidden";
var currentlyVisible = true;
var functionOrExpression = $parse(attrs.reactOnWindowFocus);
// Standards:
if (hidden in document)
document.addEventListener("visibilitychange", onchange);
else if ((hidden = "mozHidden") in document)
document.addEventListener("mozvisibilitychange", onchange);
else if ((hidden = "webkitHidden") in document)
document.addEventListener("webkitvisibilitychange", onchange);
else if ((hidden = "msHidden") in document)
document.addEventListener("msvisibilitychange", onchange);
else if ("onfocusin" in document) {
// IE 9 and lower:
document.onfocusin = onshow;
document.onfocusout = onhide;
} else {
// All others:
window.onpageshow = window.onfocus = onshow;
window.onpagehide = window.onblur = onhide;
}
function onchange (evt) {
//occurs both on leaving and on returning
currentlyVisible = !currentlyVisible;
doSomethingIfAppropriate();
}
function onshow(evt) {
//for older browsers
currentlyVisible = true;
doSomethingIfAppropriate();
}
function onhide(evt) {
//for older browsers
currentlyVisible = false;
doSomethingIfAppropriate();
}
function doSomethingIfAppropriate() {
if (currentlyVisible) {
//trigger angular digest cycle in this scope
scope.$apply(function() {
functionOrExpression(scope);
});
}
}
}
};
});
您可以像以下示例一样使用它:<div react-on-window-focus="refresh()">
,其中 refresh()
是范围内的任何 Controller 范围内的范围函数。
如果您想对整个浏览器模糊采取行动:正如我所评论的,如果浏览器失去焦点,则不会触发任何建议的事件。我的想法是循环计数并在事件触发时重置计数器。如果计数器达到限制,我会对另一个页面执行 location.href。如果您使用开发工具,这也会触发。
var iput=document.getElementById("hiddenInput");
,count=1
;
function check(){
count++;
if(count%2===0){
iput.focus();
}
else{
iput.blur();
}
iput.value=count;
if(count>3){
location.href="http://Nirwana.com";
}
setTimeout(function(){check()},1000);
}
iput.onblur=function(){count=1}
iput.onfocus=function(){count=1}
check();
这是在FF上测试成功的草稿。
Chromium 团队目前正在开发 Idle Detection API。它以 origin trial since Chrome 88 的形式提供,这已经是该功能的第二个原始试用版。较早的原始试验从 Chrome 84 到 Chrome 86。
它也可以通过标志启用:
通过 chrome://flags 启用 要在本地试验空闲检测 API,无需原始试用令牌,请在 chrome://flags 中启用 #enable-experimental-web-platform-features 标志。
可以在此处找到演示:
https://idle-detection.glitch.me/
必须注意的是,此 API 是基于权限的(应该如此,否则可能会被滥用来监视用户的行为!)。
我重读了@daniel-buckmaster 版本,我没有进行多次尝试,但是,代码对我来说似乎更优雅......
// on-visibility-change.js v1.0.1, based on https://stackoverflow.com/questions/1060008/is-there-a-way-to-detect-if-a-browser-window-is-not-currently-active#38710376
function onVisibilityChange(callback) {
let d = document;
let visible = true;
let prefix;
if ('hidden' in d) {
prefix = 'h';
} else if ('webkitHidden' in d) {
prefix = 'webkitH';
} else if ('mozHidden' in d) {
prefix = 'mozH';
} else if ('msHidden' in d) {
prefix = 'msH';
} else if ('onfocusin' in d) { // ie 9 and lower
d.onfocusin = focused;
d.onfocusout = unfocused;
} else { // others
window.onpageshow = window.onfocus = focused;
window.onpagehide = window.onblur = unfocused;
};
if (prefix) {
visible = !d[prefix + 'idden'];
d.addEventListener(prefix.substring(0, prefix.length - 1) + 'visibilitychange', function() {
(d[prefix + 'idden'] ? unfocused : focused)();
});
};
function focused() {
if (!visible) {
callback(visible = true);
};
};
function unfocused() {
if (visible) {
callback(visible = false);
};
};
};
这是一个可靠的现代解决方案。 (短个甜心👌🏽)
document.addEventListener("visibilitychange", () => {
console.log( document.hasFocus() )
})
这将设置一个侦听器以在触发任何可见性事件(可能是焦点或模糊)时触发。
我的代码
let browser_active = ((typeof document.hasFocus != 'undefined' ? document.hasFocus() : 1) ? 1 : 0);
if (!browser_active) {
// active
}
focusin
和focusout
从 iframe 传播到上部窗口。对于较新的浏览器,您只需处理每个 iframe 的window
对象上的focus
和blur
事件。您应该使用我刚刚添加的更新代码,它至少会涵盖较新浏览器中的这些情况。