Window focus() 方法
定义和用法
focus() 方法可把键盘焦点给予一个窗口。
语法
window.focus()
浏览器支持
所有主要浏览器都支持 focus() 方法
实例
实例
确保新窗口获得焦点(发送新窗口前):
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>W3Cschool教程(w3cschool.cn)</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>尝试一下 »