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