javascript 页面跳转大总结
第一种
window.location = "http://www.xxxxxxxx.net" 跳转后有后退功能
第二种
window.location.replace("http://www.xxxxxxxx.net") 跳转后没有后退功能
第三种
window.open("http://www.xxxxxxxx.net") 要新的窗口打开链接
第四种:
<script language="JavaScript">
self.location='top.htm';
</script>
第五种
top.location='xx.jsp';
第六种
window.history.back(-1);
第七种
window.navigate("top.jsp");