有3種方法可以實(shí)現(xiàn)html的頁面跳轉(zhuǎn),1,refresh 2,onload事件中加入代碼 3,js實(shí)現(xiàn)
1、
<html>
<body>
<meta http-equiv="refresh" content="0;url=http://procomes.org">
</body>
</html>
2、
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>歡迎訪問</title>
</head>
<body onLoad="parent.location='http://procomes.org'">
</body>
</html>
3、
<script language="JAVASCRIPT">
setTimeout("document.location.href='
http://procomes.org'“,0);
</script>
放在<body></body>之間就可以了!!