window.location.href="target.aspx";
window.navigate("target.aspx");
self.location='target.aspx';
top.location='target.aspx';
alert("返回");
window.history.back(-1);
if (typeof SWFObject == "undefined") {
document.write('<scr' + 'ipt type="text/javascript" src="/scripts/swfobject-1.5.js"></scr' + 'ipt>');
}
history.go(0)
location.reload()
location=location
location.assign(location)
document.execCommand('Refresh')
window.navigate(location)
location.replace(location)
document.URL=location.href
8.自动刷新页面的方法:页面自动刷新:把如下代码加入head区域中,其中20指每隔20秒刷新一次页面.
<meta http-equiv="refresh" content="20">
<meta http-equiv="refresh" content="20;url=http://www.qianduandu.com">
<body onload="opener.location.reload()"> 开窗时刷新
<body onUnload="opener.location.reload()"> 关闭时刷新
window.opener.document.location.reload()