jquery如何检查所选的浏览器选项卡/窗口是否在我们的页面上?

时间:2011-07-02 21:12:08

标签: javascript jquery

如何检查用户目前是否在我们的页面上有浏览器的标签/窗口

function userisonourpage()
{
//do something
}

当用户将标签/窗口切换到我们的页面时?

function tabswitched()
{
//dom something here too
}

就像在很多地方一样,你切换到页面并更改标题我知道标题可以改为:document.title 但不知道如何实现这些功能。

谢谢:D

1 个答案:

答案 0 :(得分:12)

你可以这样做:

$(document).ready(function(){
   $([window, document]).focusin(function(){
      //Your logic when the page gets active
   }).focusout(function(){
      //Your logic when the page gets inactive
   });
});

希望这会有所帮助。干杯