2011-03-19 64 views

回答

8

不,不是真的。也許你可以爲窗口的焦點/模糊事件分配處理程序,設置一個布爾值爲true或false,並用它來確定它是否有焦點。

window.hasfocus = false; 

window.onfocus = function(){ 
    this.hasfocus = true; 
} 

window.onblur = function(){ 
    this.hasfocus = false; 
} 
+0

偉大的想法:沿着這條線

東西,但是我會將標準值設置爲「true」,因爲當您加載代碼時,窗口可能已經具有焦點。 – Thomas 2013-05-08 12:13:20