有3种方法可以实现html的页面跳转,1,refresh 2,onload事件中加入代码 3,js实现

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>之间就可以了!!

相关文章:

  • 2018-04-12
  • 2021-09-04
  • 2021-09-05
  • 2021-10-14
  • 2021-12-31
猜你喜欢
  • 2018-06-05
  • 2021-12-13
  • 2021-12-05
  • 2021-11-07
  • 2021-12-15
  • 2021-12-05
  • 2021-10-29
相关资源
相似解决方案