(function($){
$(window).focus(function(){
document.title = 'focused';
});
$(window).blur(function(){
document.title = 'not focused';
});
})(jQuery);
它应该做什么:如果一个标签是焦点,标题应该是“焦点”;如果不是,那么标题应该是“不集中”。
它在现实中所做的事情:在让标签不聚焦后,它的标题将永远保持“不聚焦”。
这在 Firefox 中运行良好,但在 Chrome 中不行,有人有建议吗?谢谢!