命令:
document.location.href="www.google.com"
在谷歌浏览器不改变当前网页。 该命令会在IE9浏览器传送的页面。
为什么对IE9但不是镀铬这个命令?
命令:
document.location.href="www.google.com"
在谷歌浏览器不改变当前网页。 该命令会在IE9浏览器传送的页面。
为什么对IE9但不是镀铬这个命令?
您需要添加的协议:
document.location.href="http://www.google.com";
另一种解决方案是前添加此线document.location.href
window.event.returnValue = false;
来源: document.location不改变网页的IE9?