3
var hlist = window.history.length; //length of history
var hisArr = [];    // empty array store prev history

    for ( i = 0; i <= hlist; i++ ) {
         hisArr.push( url );  
    };
4

2 回答 2

2

您无法从历史对象中获取 url,请查看手册

于 2013-10-15T06:12:06.900 回答
0

如果创建 SPA 应用程序,则在更改页面时不会重新加载整个应用程序。AngularJS 是一个选项,你可以监听 routeChange 事件,这样就可以保留你自己的历史记录。

如果您只需要历史记录的 url,这可能是一个可行的选择。

于 2015-01-13T12:48:32.390 回答