var y = 0;
var focus = true;
$(window).bind('focus', function() {
if(!focus) {
console.log("Hello");
document.title = "title";
focus = true;
}
});
$(window).bind('blur', function() {
if(focus) {
document.title = "title (" + y + ")";
focus = false;
y++;
}
});
大家好,
上面的代码在 Google Chrome 中更改选项卡时无法正常工作,尽管它在控制台中打印“Hello”,但它不会将文档的标题重置为“title”。在 Firefox 和 IE 中它可以工作。
有什么帮助吗?
提前致谢。