js 3秒后跳转页面的实现代码



// 使用setTimeout函数在3秒后执行跳转
setTimeout(function() {
  window.location.href = 'https://your-target-url.com'; // 替换为你的目标URL
}, 3000);

这段代码会在3秒后(3000毫秒)使浏览器跳转到指定的URL。请将`'https://your-target-url.com'`替换为你希望跳转到的实际URL。