实现页面自动跳转
-Meta标签法
在<head>
中添加<meta>
标签,设置http-equiv
为refresh
,通过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>
两种方法均可实现页面自动跳转,选择适合需求的一种即可。