下面的例子将弹出窗口的焦点去掉:
<html> <head> <script type="text/javascript"> myWindow=window.open('','','width=200,height=100'); myWindow.document.write("这是弹出的新窗口"); myWindow.blur(); // 如果要想原窗口获得焦点可以使用: // self.focus(); </script> </head> <body> </body> </html>
0