focus() 方法可把键盘焦点给予一个窗口。
window.focus()
所有主要浏览器都支持 focus() 方法
确保新窗口获得焦点(发送新窗口前):
运行一下 »<html>
<head>
<script>
function openWin()
{
myWindow=window.open('','','width=200,height=100');
myWindow.document.write("<p>This is 'myWindow'</p>");
myWindow.focus();
}
</script>
</head>
<body>
<input type="button" value="Open window" onclick="openWin()">
</body>
</html>