focus() 方法可把键盘焦点给予一个窗口。
所有主要浏览器都支持 focus() 方法
确保新窗口获得焦点(发送新窗口前):
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟学堂(edu.jb51.net)</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>尝试一下 »