jsp页面的前进刷新后退

来源:互联网 发布:怎么查看网络是否稳定 编辑:程序博客网 时间:2024/05/22 01:31
转自:http://www.mikebai.com/Article/2009-11/757.html
<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()">
打开一个jsp页面,肯定是用客户端脚本进行刷新了。
Javascript刷新页面的几种方法:
打开一个jsp页面,肯定是用客户端脚本进行刷新了。Javascript刷新页面的几种方法:1 history.go(0)2 location.reload()3 location=location4 location.assign(location)5 document.execCommand('Refresh')6 window.navigate(location)7 location.replace(location)8 document.URL=location.href
如果是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();         }     }}



原创粉丝点击