五、使用history.pushState产生历史,popstate事件处理后退
04 | < meta charset = "utf-8" /> |
08 | < input type = "button" value = "加1" onclick = "add()" /> |
09 | < div id = "info" style = "border:red 1px solid;width:200px;padding:10px;" >0</ div > |
12 | < script src = "history-0.5.js" ></ script > |
14 | var info = document.getElementById('info'); |
pushState和popstate是HTML5为history对象新增的方法和事件。虽然可以改变地址栏,但却不能复制地址栏的url直接进入该历史记录。该系列API知道IE10预览版尚不支持,Firefox/Safari/Chrome/Opera的最新版本均支持。
开发中应根据需求组合以上形式以兼容所有浏览器,如新浪微博就组合使用了方案一,四,五(base.js)。如果项目中使用了一些开源库如jQuery,mootools等时强烈推荐使用histroy.js 。古老的dhtmlHistory.js和RSH已经很久没更新了。
history-0.5.js
相关:
http://www.w3.org/TR/html5/history.html
http://dev.opera.com/articles/view/introducing-the-html5-history-api/