方小琪 发表于 2020-12-29 17:21:23

网页自动跳转的几种实现方法

有时需要实现网页自动跳转功能。

一、html的实现
<head>
<!-- 以下方式只是刷新不跳转到其他页面 -->
<meta http-equiv="refresh" content="10">
<!-- 以下方式定时转到其他页面 -->
<meta http-equiv="refresh" content="5;url=http://www.xhymsq.com">
</head>
以上表示5秒后跳转到http://www.xhymsq.com



二、javascript的实现
<script language="javascript" type="text/javascript">
// 以下方式直接跳转
window.location.href='hello.html';
// 以下方式定时跳转
setTimeout("javascript:location.href='hello.html'", 5000);
</script>

页: [1]
查看完整版本: 网页自动跳转的几种实现方法