欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js实现几秒钟后页面自动跳转到指定页

程序员文章站 2022-03-03 08:51:59
...
     <script language=javascript>  
         setTimeout('window.location="http://www.paopaocity.com"',5000)  
     </script>



另外还有一种:

 

 在head头部里写meta标签

Html代码  js实现几秒钟后页面自动跳转到指定页
  1. <head>  
  2.         <meta http-equiv="refresh" content="0;URL=http://www.paopaocity.com/">  
  3.     </head>  

 
content=0 ;   <!--设置本页面停留时间,单位为秒-->
url=http://   <!--将要跳转的页面路径-->