解决方法
其中一个将起作用……
<html> <head> <title>A web page that points a browser to a different page after 2 seconds</title> <Meta http-equiv="refresh" content="2; URL=http://example.com/services/computing/"> <Meta name="keywords" content="automatic redirection"> </head> <body> If your browser doesn't automatically go there within a few seconds,you may want to go to <a href="http://example.com/">the destination</a> manually. </body> </html>
……或者它可以用JavaScript完成.此JavaScript示例在4.5秒(4500毫秒)延迟后在新的浏览器窗口中打开新站点:
<script language="javascript" type="text/javascript"> <!-- window.setTimeout('window.open("http://example.com/","newsite")',4500); // --> </script>