window.location.href在IE8中不工作

window.location.href does not work in IE8

本文关键字:工作 IE8 location href window      更新时间:2023-09-26

我必须在页面中向上滚动。因此我在正确的地方放了一个锚,然后我做了

window.location.href = 'http://example.org/#anchor';

这适用于FF, Chrome, Safari和IE9。但是在IE8中什么也没有发生(它不滚动)。

我也试过:

window.location.hash = "anchor";
window.location.hash = "#anchor";
scrollTo(0, 0);

然而,IE8就是不想滚动。重要的是我们要把注意力转移到锚点上。不可能重新加载。

提前感谢任何提示:)

对于ie8,就像这样使用它,它将工作:

window.location = 'http://example.org/#anchor';