2

在 Safari 5 中触发我的 popState 时,我似乎无法访问 window.history.state 对象(页面返回)。此代码在 Chrome 19 和 Firefox 12 中完美运行。

window.onload = function() {

     window.setTimeout(function() {

          var original = window.location.href;

          window.addEventListener("popstate", function(e) {

                    if (window.history.state !== null) {
                        var type = window.history.state.type;
                        var page = window.history.state.page;
                        //custom Ajax function below
                        getContent({type:type, page:page, category: category}, '/' + type + '/' + page);
                    } else {
                        window.location = original;
                    }

            }, false);

     }, 1);
}

Safari 5 中的 console.log(window.history.state) 返回“未定义”。

4

2 回答 2

3

window.history.state仅在某些浏览器中可用。它本身不是规范的一部分。

Feature           │ Chrome  │ Firefox (Gecko)  │  IE  │ Opera  │ Safari
──────────────────┼─────────┼──────────────────┼──────┼────────┼───────
replace/pushState │   5     │    4.0 (2.0)     │  10  │ 11.50  │  5.0
history.state     │  18     │    4.0 (2.0)     │  10  │ 11.50  │  ---
于 2012-06-08T00:11:05.997 回答
2

因此,如果支持 history.state,则该值将为 null(或者如果浏览器正在记住状态,则为对象),否则它将是未定义的。最后我用这段代码检查它是否受支持

(window.history && history.pushState && history.state !== undefined) 
? true : false;

在最新的 Chrome、Safari 5、6、IE 9 中测试

于 2012-11-05T16:34:30.567 回答