该[removed].href没有在Chrome浏览器工作(The [removed].href i

2019-07-03 13:28发布

命令:

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

在谷歌浏览器不改变当前网页。 该命令会在IE9浏览器传送的页面。

为什么对IE9但不是镀铬这个命令?

Answer 1:

您需要添加的协议:

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


Answer 2:

另一种解决方案是前添加此线document.location.href

window.event.returnValue = false;

来源: document.location不改变网页的IE9?



文章来源: The document.location.href is not working in Chrome browser