html 实现页面自动跳转
小于 1 分钟...
通过 js setTimeout
实现
<script type="text/javascript">
// 3 秒后自动跳转
setTimeout(function () {
window.location.href = "https://www.qinwg.cn";
}, 1000 * 3);
</script>
通过 html meta
实现
<!-- 3 秒后自动跳转 -->
<meta http-equiv="refresh" content="3;url=https://www.qinwg.cn" />