window.history.go(0)
页面可以返回上一个页面的时候就调用 window.history.go(-1);返回
当页面不可以用“后退”按键的时候就关闭窗口,
主要是因为这个页面可能是新开的一个窗口,也可能是在前一个页面的窗口中打开的
---------------------------------------------------------------
为安全起见,history 对象并不给出浏览器历史的实际 URL。该对象只提供了通过 back, forward 和 go 方法在浏览器历史中导航的功能。浏览器历史中的特定文档可以由与当前页面相对的索引值代表。例如,指定 -1 作为 go 方法的参数和单击“后退”按钮一样。
---------------------------------------------------------------
alert(document.referrer);
---------------------------------------------------------------
可以判??ocument.referrer值是否?榭铡
---------------------------------------------------------------
if(history.length == 0) window.close();
代码如下 | 复制代码 |
<input type=button value=刷新 onclick="window.location.reload()"> <input type=button value=前进 onclick="window.history.go(1)"> <input type=button value=后退 onclick="window.history.go(-1)"> <input type=button value=前进 onclick="window.history.forward()"> <input type=button value=后退 onclick="window.history.back()"> |
后退+刷新
代码如下 | 复制代码 |
<input type=button value=后退 onclick="window.history.go(-1);window.location.reload()"> |
在C# Web程序中,如为页面按钮写返回上一页代码
代码如下 | 复制代码 |
this.RegisterClientScriptBlock("E", "<script language=javascript>history.go(-2);</script>"); |
其中,history.go(-2),要写为-2,因在按钮事件触发前,已刷新一次页面,所以应是-2。
代码如下 | 复制代码 |
Response.Write("<script language=javascript>history.go(-2);</script>"); |
此处也要写为“-2”。跟直接写脚本的有所不同。
history.back()是会上一页
i=1
history.go(i)去指定的某夜
如果是history.go(0)那就是刷新
这两个属于JS代码,相当于IE的前进、后退功能。
具体的用处就要看什么时候需要这个就用上。比如用户注册时的验证是后台验证,不符合要求的时候就可以用这个,可以最大限度保证用户少重复输入数据。
例如:载入页面:
代码如下 | 复制代码 |
function onLoadPage(){ if(event.srcElement.tagName=="SPAN"){ oFrame=top.window.middle.frames[2]; oTxt=event.srcElement.innerText; switch(oTxt){ case "前 进": oFrame.history.go(1); case "后 退": oFrame.history.back(); case "刷 新": oFrame.location.reload(); } } } <a herf="javascript:window.history.go(-1)">返回上一页</a> |
window.location.reload()
window.location.href=location.href
window.location.assign(location.href)
document.execCommand(‘Refresh’)
window.navigate(location.href)
window.navigate("#pos");
window.location.replace(location.href)
window.open(‘自身的文件’,'_self’)
————-
location.reload(flag)
flag =true 不从缓存读取
=false 从缓存读取