document.location.href无法在Chrome浏览器中运行

时间:2012-11-03 12:32:00

标签: javascript google-chrome internet-explorer-9 location href

命令:

document.location.href="www.google.com" 

不会更改Google Chrome浏览器中的当前网页。该命令确实在IE9浏览器中传输页面。

为什么这个命令适用于IE9而不适用于chrome?

2 个答案:

答案 0 :(得分:8)

您需要添加协议:

document.location.href="http://www.google.com";

答案 1 :(得分:6)

另一种解决方案是在document.location.href

之前添加此行
window.event.returnValue = false;

来源:document.location does not change the webpage in IE9?