第一种
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");

相关文章:

  • 2021-09-29
  • 2021-10-15
  • 2021-12-15
  • 2021-09-21
  • 2022-12-23
  • 2022-12-23
  • 2021-12-31
猜你喜欢
  • 2022-12-23
  • 2021-11-15
  • 2022-01-07
  • 2022-12-23
相关资源
相似解决方案