js自动关闭窗口

function open(){ window.open('http://www.iteye.com','_blank'); //这里放置定时自动关闭新页面的代码 }

请问如何定时自动关闭 window.open打开的新页面,而不关闭整个浏览器?



New Document




<br> function openWin(){ <br> var openPage=window.open (&quot;<a href="http://www.iteye.com">http://www.iteye.com</a>&quot;, &quot;iteye&quot;, &quot;height=800, width=1000, toolbar =yes, menubar=yes, scrollbars=yes, resizable=yes, location=yes, status=yes&quot;);<br> //这里放置定时自动关闭新页面的代码 <br> setTimeout(function(){openPage.close();}, 3000); </p> <p>} <br>