<!--实例002定时打开窗口-->
<script> // 3秒后弹出窗口; function time() { window.open("index.html","new","height=100,width=300,top=200,left=500"); } setTimeout("time()",3000);</script>
Example002
原文:http://www.cnblogs.com/handsomehan/p/5270229.html