如何在localhost上设置window.location,包括IE 8下的哈希标记

时间:2011-07-23 00:39:16

标签: javascript internet-explorer

我有一个用于更改当前网址的书签。代码是:

javascript:location.href ='http:// localhost:8888 / #nominate'

但是,在IE8下,最终会将浏览器发送到:http://localhost:8888/

如何将IE8发送到该hashmark位置?

感谢。

1 个答案:

答案 0 :(得分:4)

要尝试两件事:

window.location = 'http://localhost:8888/#nominate';
window.location.assign('http://localhost:8888/#nominate');

规范还允许您直接设置window.location.hash值,但您不必这样做。