文章转载自:   js页面跳转的几种代码     http://www.studyofnet.com/news/185.html

 

页面跳转方式

 

1.在原来的窗体中直接跳转用

window.location.href=”你所要跳转的页面”;

window.history.back(-1);返回上一页

window.history.history.back()

window.history.forward()返回下一页

window.history.go(返回第几页,也可以使用访问过的URL)

 

2、在新窗体中打开页面用:

window.open(‘你所要跳转的页面’);

window.showmodeldialog(‘你所要跳转的页面’)

 

js页面跳转到父页面、最外层页面、本页面

“window.location.href”、”location.href”是本页面跳转;

“parent.location.href”是上一层页面跳转,也可以使用子窗口的 opener 对象来获得父窗口的对象来实现父窗口的刷新:window.opener.document.location.href;

“top.location.href”是最外层的页面跳转;