DOM中的window对象经过window.history方法提供了对浏览器历史记录的读取,让你能够在用户的访问记录中前进和后退。javascript
History 对象包含用户(在浏览器窗口中)访问过的 URL。php
History 对象是 window 对象的一部分,可经过 window.history 属性对其进行访问。html
注意: 没有应用于History对象的公开标准,不过全部浏览器都支持该对象。java
属性 | 说明 |
length | 返回历史列表中的网址数,经过检查浏览器历史记录的length属性来找到历史记录堆栈中的页面总数 |
使用back(),forward(),和go()方法能够在用户的历史记录中前进、后退、移动到历史记录中特定的位置node
方法 | 说明 |
back() | 加载 history 列表中的前一个 URL,像用户点击了浏览器工具栏上的返回键同样 |
forward() | 加载 history 列表中的下一个 URL |
go() | 加载 history 列表中的某个具体页面,使用go()方法从session历史中载入特定的页面,注意:IE支持向go()方法传URL参数 |
HTML5引入history.pushState()和history.replaceState()方法,添加和修改history实体。同时,这些方法会和window.onpostate事件一块儿工做。浏览器
方法 | 说明 |
pushState() | 向 history 添加当前页面的记录 |
replaceState() | history.replaceState() 用起来很像pushState(),除了replaceState()是用来修改当前的history实体而不是建立一个新的。这个方法有时会颇有用,当 你须要对某些用户行为做反应而更新一个state对象或者当前history实体时,可使用它来更新state对象或者当前history实体的url。 |
pushState()有三个参数:state对象,标题(如今是被忽略,未做处理),URL(可选)。具体细节:安全
· state对象 –state对象是一个JavaScript对象,它关系到由pushState()方法建立出来的新的history实体。用以存储关于你所要插入到历史 记录的条目的相关信息。State对象能够是任何Json字符串。由于firefox会使用用户的硬盘来存取state对象,这个对象的最大存储空间为640k。若是大于这个数 值,则pushState()方法会抛出一个异常。若是确实须要更多的空间来存储,请使用本地存储。服务器
· title—firefox如今回忽略这个参数,虽然它可能未来会被使用上。而如今最安全的使用方式是传一个空字符串,以防止未来的修改。或者能够传一个简短的标题来表示statesession
· URL—这个参数用来传递新的history实体的URL,注意浏览器将不会在调用pushState()方法后加载这个URL。但也许会过一会尝试加载这个URL。好比在用户重启了浏览器后,新的url能够不是绝对路径。若是是相对路径,那么它会相对于现有的url。新的url必须和现有的url同域,不然pushState()将抛出异常。这个参数是选填的,若是为空,则会被置为document当前的url。app
某种意义上来讲,调用pushState()方法很像设置了window.location = “#foo”,这二者都会建立和激活另外一个关联到当前document的history实体,但pushState()另外有一些优势:
l 新的url能够是任何和当前url同域的url,相比之下,若是只设置hash,window.location会保持在同一个document。
l 若是不须要,你能够不修改url。对比而言,设置window.location = “#foo”;仅产生新的history实体,若是你当前的hash不是#foo
l 你能够将任意的数据与你的新history实体关联。使用基于hash的方法,须要将全部相关的数据编码为一个短字符串。
注意,pushState()方法不会使hashchange时间发生,即便是新旧url只是hash不一样。
例子
假设http://***/foo.html页面执行了一下JS
var stateObj = { foo: "bar" };
history.pushState(stateObj, "page 2", "bar.html");
这种方法将会使url地址栏显示http://***/bar.html,但浏览器不会加载bar.html页面,即便这个页面存在也不会加载。
当history实体被改变时,popstate事件将会发生。若是history实体是有pushState和replaceState方法产生的,popstate事件的state属性会包含一份来自history实体的state对象的拷贝
方法 | 说明 |
popstate | 向详见window.onpopstate |
描述:A页面基本信息页,包含上传按钮点击进入B页面,B页面上传操做成功会回退到A页面,须要考虑问题,1:iframe实现图片异步上传,具体参见代码,2:使用history.pushState()和popstate事件实现AJAX的前进、后退功能,3:window内iframe使用state各浏览器兼容问题。
main.html:
<html> <head> <title></title> </head> <body> <!-- A页面--> <article node-type="basic_block"> <a href="javascript:void(0);" node-type="pic_a" action-type="pic_a">选择图片</a> </article> <!-- B页面--> <article node-type="upload_block" class="hid"> <span>上传图片</span> <form id="pic_form" node-type="pic_form" target="pic_iframe" action="http://picupload.php?" method="POST"> <input type="file" node-type="pic_input"> </form> <iframe frameborder="0" class="hid" id="pic_iframe" name="pic_iframe" src="about:blank"></iframe> </article> <script type="application/javascript" src="main.js"></script> </body> </html>
picupload.php:
//处理上传,得到上传后的img_path地址,省略 $this->display('picupload.html', array('img_path' => $img_path));
picupload.html:
<html> <head> <title></title> <script type="text/javascript"> if(window.parent){ window.parent.addImgSuccess(img_path); } </script> </head> <body> </body> </html>
main.js:
var org_index = 0; //"返回"触发事件,settimeout防止有些浏览器首次加载时触犯popstate window.addEventListener('load', function() { setTimeout(function() { window.addEventListener('popstate', function() { $('article').addClass('hid'); $('[node-type="basic_block"]').removeClass('hid'); }); }, 0); }); $('[node-type="pic_a"]').tap(function(){ $('[node-type="basic_block"]').addClass('hid'); $('[node-type="upload_block"]').removeClass('hid'); var state = history.state; history.pushState(state, null, window.location+'#upload'); org_index = history.length; }); $('[node-type="pic_input"]').change(function(){ addPic(); }); //上传控件执行触发form提交 addPic : function() { $("#pic_form").submit(); }, //上传头像成功 addImgSuccess : function(img_path, data) { //兼容不一样浏览器,一些浏览器加载window对象时会push新的state,history.length会增长 var go_index = org_index - history.length - 1; history.go(go_index); },
页面原型:
原理:将图片上传的页面放在iframe中,这样就能够在iframe中将图片提交到服务器而不须要页面刷新,提交成功后用脚本实现回到主页面并显示上传的图片。
当页面加载时,它可能会有一个非空的state对象,这可能发生在当页面设置一个state对象(使用pushState或者replaceState)以后用户重启了浏览器。当页面从新加载,页面将收到onload事件,但不会有popstate事件。然而,若是你读取history.state属性,将在popstate事件发生后获得这个state对象,因此在"返回"触发事件,使用settimeout防止有些浏览器首次加载时触犯popstate
不一样浏览器对iframe中history操做不同,如Firefox执行history.back/go(-1)是iframe内后退,而Chrome是父页面后退,咱们这里是须要实现父页面回退,根据state变化动态获取须要回退的步数:
var go_index = org_index - history.length - 1; history.go(go_index);
页能够根据不一样的浏览器判断,不过须要对浏览器一一了解,不推荐,以下:
var explorer =navigator.userAgent; var str = JSON.stringify(window.location); //ie if (explorer.indexOf("MSIE") >= 0) { history.go(-1); } //firefox else if (explorer.indexOf("Firefox") >= 0) { history.go(-2); } //Chrome else if (explorer.indexOf("Chrome") >= 0) { } //Opera else if (explorer.indexOf("Opera") >= 0) {} //Safari else if (explorer.indexOf("Safari") >= 0) {} //Netscape else if (explorer.indexOf("Netscape")>= 0) {}