几秒自动转向页面问题

在<head>  
   
  <meta   http-equiv=refresh   content="5;   url=main.jsp">  
   
  </head>

用javascript:  
  <script>  
  setTimeout("window.location.href='地址'",2000);  
  </script>  
  2秒后跳转

<script>  
  function   go(){  
      window.location="www.sohu.com";  
   
  }  
  </script>  
  <input   type=button   value="3秒后转到www.sohu.com"   onclick="setTimeout('go()',3000)"> 

你可能感兴趣的:(几秒自动转向页面问题)