js如何实现定时功能(定时打开新页面)

2024年08月03日 建站教程

js语法中有哪些函数可以实现定时功能,比如定时打开新页面?下面web建站小编给大家详细介绍一下具体代码!

setTimeout()方法

setTimeout(function(){
  window.open('https://lmcjl.com', '_blank');
}, 5000);

setInterval()方法

setInterval(function(){
  window.open('https://lmcjl.com', '_blank');
}, 5000);

clearTimeout()方法

var timer = setTimeout(function(){
  window.open('https://lmcjl.com', '_blank');
}, 5000);
 
// 取消定时器
clearTimeout(timer);

本文链接:http://so.lmcjl.com/news/9863/

展开阅读全文
相关内容