当前位置: 代码迷 >> HTML/CSS >> HTML几种跳转形式
  详细解决方案

HTML几种跳转形式

热度:57   发布时间:2012-11-25 11:44:31.0
HTML几种跳转方式
1.<meta http-equiv="refresh" content="0;url=http://88223100.cnblogs.com">

2.<body onLoad="parent.location='http://88223100.cnblogs.com'">

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