Example002定时打开窗口

<!--实例002定时打开窗口-->

<script>
// 3秒后弹出窗口;
function time() {
window.open("index.html","new","height=100,width=300,top=200,left=500");
}
setTimeout("time()",3000);
</script>

  

posted @ 2016-03-12 21:56  HandsomeHan  阅读(104)  评论(0)    收藏  举报