我试图找到浏览器最小化和最大化状态,因为我想根据浏览器状态点击AJAX请求。
有谁知道如何使用JavaScript检测浏览器状态。
答案 0 :(得分:20)
我认为检测这些状态的唯一可靠方法是检查HTML5提供的visibility API(这仍然是一个实验性功能),它提供某些属性和事件
document.hidden // Returns true if the page is in a state considered to be hidden to the user, and false otherwise.
document.visibilityState // Returns a string denoting the visibility state of the document
您还可以对可见性的变化做出反应
document.addEventListener("visibilitychange", function() {
console.log(document.hidden, document.visibilityState);
}, false);
请注意,这不适用于跨浏览器,仅适用于某些浏览器版本。
答案 1 :(得分:4)
此处Piotrek De' s answer on another question:
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
- FF 26.0
- Chrome 34.0
可能是所有较新的版本。
不能完全使用:
- IE8 - 始终指示选项卡/窗口当前处于活动状态(.now()始终为我返回true)
答案 2 :(得分:2)
我使用此代码
window.addEventListener('blur', function(){
console.log('blur');
}, false);
window.addEventListener('focus', function(){
console.log('focus');
}, false);
答案 3 :(得分:1)
您可以尝试使用Page Visibility API,它具有布尔属性document.hidden(document.webkitHidden),它还可以检测当前页面是最小化还是最大化。它还取决于用户是否关注当前浏览器选项卡:
https://developers.google.com/chrome/whitepapers/pagevisibility
https://developer.mozilla.org/en/DOM/Using_the_Page_Visibility_API