1
可能重複:
How do I find out which Javascript element has focus?Javascript-文檔/窗口有焦點?
是否可以檢查在Javascript當前窗口是否具有焦點?
可能重複:
How do I find out which Javascript element has focus?Javascript-文檔/窗口有焦點?
是否可以檢查在Javascript當前窗口是否具有焦點?
不,不是真的。也許你可以爲窗口的焦點/模糊事件分配處理程序,設置一個布爾值爲true或false,並用它來確定它是否有焦點。
window.hasfocus = false;
window.onfocus = function(){
this.hasfocus = true;
}
window.onblur = function(){
this.hasfocus = false;
}
偉大的想法:沿着這條線
東西,但是我會將標準值設置爲「true」,因爲當您加載代碼時,窗口可能已經具有焦點。 – Thomas 2013-05-08 12:13:20
見http://stackoverflow.com/questions/497094/how-do-i-find-out-which-javascript-element-has-focus – chelmertz 2011-03-19 18:03:01