我有一个用于更改当前网址的书签。代码是:
javascript:location.href ='http:// localhost:8888 / #nominate'
但是,在IE8下,最终会将浏览器发送到:http://localhost:8888/
如何将IE8发送到该hashmark位置?
感谢。
答案 0 :(得分:4)
要尝试两件事:
window.location = 'http://localhost:8888/#nominate';
window.location.assign('http://localhost:8888/#nominate');
规范还允许您直接设置window.location.hash值,但您不必这样做。