HTML DOM Window 对象
focus() 方法可把键盘焦点给予一个窗口。
window.focus()
下面的例子可确保新的窗口得到焦点:
<html> <body> <script type="text/javascript"> myWindow=window.open('','','width=200,height=100') myWindow.document.write("This is 'myWindow'") myWindow.focus() </script> </body> </html>
Search: