A. URL跳转的几种方式
1、:
<head><!--以下方式只是刷新不跳转到其他页面--><metahttp-equiv="refresh"content="10"><!--以下方式定时转到其他页面--><metahttp-equiv="refresh"content="5;url=hello.html"></head>
2、javascript:
①、window.location.href方式
js"><scriptlanguage="javascript"type="text/javascript">//以下方式直接跳转window.location.href='hello.html';
//以下方式定时跳转setTimeout("javascript:location.href='hello.html'",5000);
</script>
②、window.navigate方式跳转
<scriptlanguage="javascript">
window.navigate("target.aspx");</script>
③、window.loction.replace方式
<scriptlanguage="javascript">
window.location.replace("target.aspx");</script>
④、self.location方式
<scriptlanguage="JavaScript">
self.location='target.aspx';</script>
⑤、top.location方式
<scriptlanguage="javascript">
top.location='target.aspx';</script>
⑥、返回方式
<scriptlanguage="javascript">
alert("返回");
window.history.back(-1);</script>