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