如何延迟开窗

时间:2015-09-24 17:37:52

标签: html html5

我无法弄清楚如何使用HTML延迟页面在指定的时间段内打开。我将以30-40个窗口打开并以不同的间隔关闭视频网片。以下是我关闭窗口的内容,我似乎无法弄清楚如何将其延迟打开。

<script>

    var SubWin = window.open("Sub.html","-","width=300,height=180,top=0,left=00,scrollbars=no");

    setTimeout(function(){Subwin.close() },50000);

</script>

1 个答案:

答案 0 :(得分:0)

为什么不使用超时定义open函数?

var SubWin = setTimeout(function () {
    window.open("Sub.html", "-", "width=300, height=180, top=0, left=00, scrollbars=no");

    setTimeout(function () {
        Subwin.close()
    }, 50000);
}, 1000);