js实现几秒钟后页面自动跳转到指定页
程序员文章站
2022-03-03 08:51:59
...
<script language=javascript>
setTimeout('window.location="http://www.paopaocity.com"',5000)
</script>
另外还有一种:
在head头部里写meta标签
- <head>
- <meta http-equiv="refresh" content="0;URL=http://www.paopaocity.com/">
- </head>
content=0 ; <!--设置本页面停留时间,单位为秒-->
url=http:// <!--将要跳转的页面路径-->
上一篇: List和Set集合总结