2010-11-03 77 views

回答

6

你試過給新窗口焦點嗎?

newwindow = window.open(...); 
if (window.focus) { 
    newwindow.focus(); 
} 
+0

我確實嘗試過,並沒有奏效。它仍然在家長之後開放。 – 2010-11-03 16:44:02

+2

也許試試延遲一下。 'setTimeout(「newwindow.focus()」,1000);' – stevelove 2010-11-03 16:53:15

+0

這似乎工作!你能解釋爲什麼嗎?謝謝! – 2010-11-03 18:29:19

相關問題