ajax后退解决方案(五)
目录
五、使用history.pushState产生历史,popstate事件处理后退
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <!DOCTYPE html> <html> <head> <meta charset= "utf-8" /> <title>0</title> </head> <body> <input type= "button" value= "加1" onclick= "add()" /> <div id= "info" style= "border:red 1px solid;width:200px;padding:10px;" >0</div> </body> </html> <script src= "history-0.5.js" ></script> <script> var info = document.getElementById( 'info' ); var i = 1; function add() { var data = { param : i, func : func }; info.innerHTML = i; document.title = i; History.push(data); i++; } function func(i) { info.innerHTML = i; document.title = i; } </script> |
pushState和popstate是HTML5为history对象新增的方法和事件。虽然可以改变地址栏,但却不能复制地址栏的url直接进入该历史记录。该系列API直到IE10预览版尚不支持,Firefox/Safari/Chrome/Opera的最新版本均支持(IE10已经支持)。
开发中应根据需求组合以上形式以兼容所有浏览器,如新浪微博就组合使用了方案一,四,五(base.js)。如果项目中使用了一些开源库如jQuery,mootools等时强烈推荐使用histroy.js 。古老的dhtmlHistory.js和RSH已经很久没更新了。
相关:
http://www.w3.org/TR/html5/history.html
http://dev.opera.com/articles/view/introducing-the-html5-history-api/
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步