js实现页面跳转的几种方式

1.window.location.href="login.jsp?backurl="+window.location.href;
2.window.history.back(-1);
3.window.navigate("top.jsp");
4.self.location='top.htm';
5.top.location='xx.jsp';
  

原文地址:https://www.cnblogs.com/star2012/p/2764096.html