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");
posted on 2010-04-12 11:44  小刚qq  阅读(229)  评论(0编辑  收藏  举报