Example002定时打开窗口时间:2023-03-10 08:06:42 <!--实例002定时打开窗口--> <script> // 3秒后弹出窗口; function time() { window.open("index.html","new","height=100,width=300,top=200,left=500"); } setTimeout("time()",3000); </script>