网页如何实现页面几秒后自动跳转

实现页面自动跳转‌

-‌Meta标签法‌

<head>中添加<meta>标签,‌设置http-equivrefresh,‌通过content指定时间(‌秒)‌和目标URL。‌

htmlCopy Code<meta http-equiv="refresh" content="5;url=https://51dev.com">

-‌JavaScript法

使用setTimeout函数,‌在指定时间后修改window.location.href。‌

htmlCopy Code<script>
  setTimeout(function(){    window.location.href = 'https://51dev.com';
  }, 5000); // 5000毫秒后跳转</script>

两种方法均可实现页面自动跳转,‌选择适合需求的一种即可。‌

你可能感兴趣的