现在的位置: 首页 > 综合 > 正文

HTML页面跳转

2013年07月01日 ⁄ 综合 ⁄ 共 495字 ⁄ 字号 评论关闭

1.
<html>
<body>
<meta http-equiv="refresh" content="0;url=http://88223100.cnblogs.com">
</body>
</html>

2.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>欢迎访问</title>
</head>
<body onLoad="parent.location='http://88223100.cnblogs.com'">
</body>
</html>

3.
<script language="JAVASCRIPT">
setTimeout("document.location.href="/index.asp'",0);
</script>
放在<body></body>之间就可以了!!

 

4.<script language="javascript" type="text/javascript">
window.location.href
="WebForm1.aspx";;
</script>

抱歉!评论已关闭.