Window focus() 方法 Window createPopup() 方法 Window getComputedStyle() 方法 Window focus() 方法 定义和用法 focus() 方法可把键盘焦点给予一个窗口。 语法 window.focus() 浏览器支持 所有主要浏览器都支持 focus() 方法 实例 确保新窗口获得焦点(发送新窗口前): <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>编程字典(CodingDict.com)</title> <script> function openWin(){ myWindow=window.open('','','width=200,height=100'); myWindow.document.write("<p>这是'我的窗口'</p>"); myWindow.focus(); } </script> </head> <body> <input type="button" value="打开窗口" onclick="openWin()" /> </body> </html> 试一试 » 更多实例 确保新窗口没有获得焦点 Window createPopup() 方法 Window getComputedStyle() 方法