如何检查用户当前是否在我们的页面上有浏览器的选项卡/窗口
function userisonourpage() { //do something }
function tabswitched() { //dom something here too }
就像在许多地方你切换到页面和标题更改我知道标题可以更改为:document.title
但不知道如何实现这些功能.
感谢:D
解决方法
你可以这样做:
$(document).ready(function(){ $([window,document]).focusin(function(){ //Your logic when the page gets active }).focusout(function(){ //Your logic when the page gets inactive }); });
希望这可以帮助.干杯