Javascript刷新页面的几种方法:

history.go(0)

location.reload()

location=location

location.assign(location)

document.execCommand(‘Refresh‘)

window.navigate(location)

location.replace(location)

document.URL=location.href.


框架页中:(框架页中其中一个子页)

top.location.reload();   刷新整页  
self.location.reload();  刷新本页

window.parent.location.href='' 框架页重定向