1.使用meta元素
<meta http-equiv="refresh" content="5;url=hello.html">
http-equiv=“refresh” 是刷新页面,5秒后执行刷新操作,url是跳转的目的页面地址。
<meta http-equiv="refresh" content="5">
这行代码的意思是只刷新,不跳转。
2.使用script代码
立即跳转到hello.html页面。
<script type="text/javascript">
window.location.href = 'hello.html';
</script>
或者
<script language="javascript">
location.replace("http://www.baidu.com/");
</script>
5秒后跳转到hello.html页面。文章来源:https://www.toymoban.com/news/detail-526334.html
<script type="text/javascript">
setTimeout("window.location.href = 'hello.html'", 5000);
</script>
3.判断是否手机端文章来源地址https://www.toymoban.com/news/detail-526334.html
<script type="text/javascript">
var wapurl = window.location.pathname;
if
(/Android|webOS|iPhone|iPod|BlackBerry|Windows CE|Windows Phone/i.test(navigator.userAgent))
{if
(window.location.href.toLowerCase().indexOf("?pc")<0)
{try
{window.location.href="/wap"+wapurl}
catch(e){}}
}
</script>
到了这里,关于html页面自动跳转方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!