浏览 GitHub 项目的目录结构时,点击一个目录或文件链接是如何做到局部刷新,URL 同时被更新,这是什么原理?
程序员文章站
2022-05-07 11:26:15
...
如: https://github.com/rails/rails/tree/master/activerecord
但是IE上没有这种效果,是整页刷新的。
详见: https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history IE 和 firefox4 以下是不支持history.pushState的, 应该有代码判断是否支持此funtion然后相应会整页刷新。你可以用history.js,兼容低版本浏览器 : https://github.com/balupton/History.js/
但是IE上没有这种效果,是整页刷新的。
回复内容:
通过调用 history.pushState 方法。详见: https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history IE 和 firefox4 以下是不支持history.pushState的, 应该有代码判断是否支持此funtion然后相应会整页刷新。你可以用history.js,兼容低版本浏览器 : https://github.com/balupton/History.js/