你是怎么看出来焦点还是在本窗口的,我写了一个简单的案例在火狐游览器上面测试,焦点就是在新创建的窗口上面啊,火狐游览器失去焦点的时候,他的游览器上面的名字会变灰的,你按着我的代码试试,我的是安全有效的,
```html
<html>
<head>
</head>
<body>
<script type="text/javascript">
myWindow = window.open('', '', 'width=1000,height=500')
myWindow.document.write("This is 'myWindow'")
myWindow.moveTo(1920, 0)
myWindow.focus()
</script>
</body>
</html>
```