实现页面自动跳转
-Meta标签法
在<head>
中添加<meta>
标签,设置http-equiv
为refresh
,通过content
指定时间(秒)和目标URL。
htmlCopy Code<meta http-equiv="refresh" content="5;url=https://example.com">
-JavaScript法
使用setTimeout
函数,在指定时间后修改window.location.href
。
htmlCopy Code<script> setTimeout(function(){ window.location.href = 'https://example.com'; }, 5000); // 5000毫秒后跳转</script>
两种方法均可实现页面自动跳转,选择适合需求的一种即可。
推荐本站淘宝优惠价购买喜欢的宝贝:
本文链接:https://www.hqyman.cn/post/7872.html 非本站原创文章欢迎转载,原创文章需保留本站地址!
休息一下~~