如何检查用户目前是否在我们的页面上有浏览器的标签/窗口
function userisonourpage()
{
//do something
}
当用户将标签/窗口切换到我们的页面时?
function tabswitched()
{
//dom something here too
}
就像在很多地方一样,你切换到页面并更改标题我知道标题可以改为:document.title
但不知道如何实现这些功能。
谢谢:D
答案 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
});
});
希望这会有所帮助。干杯