在Javascript(不是JQuery)中,如何在2秒后关闭窗口?

时间:2010-02-25 03:46:12

标签: javascript

如何创建一个在2秒后关闭窗口的功能?

<a href="" onclick="close_it(); return false;">
    Click to close the window after 2 seconds
</a>

1 个答案:

答案 0 :(得分:3)

您可以使用setTimeout将动作推迟x毫秒。

setTimeout(function(){
  window.close();
}, 2000);