本文介绍了window.location在Chrome浏览器上不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个使用window.location的javascript函数。它在Firefox和Internet Explorer中正常工作,但不在Chrome中。我已经在Ubunutu Hardy和Windows Vista上对此进行了测试。什么是底层的问题,我该如何规避它?
解决方案最常见的使用窗口.location 是让浏览器加载一个新页面。一个常见的错误是将URL分配给 window.location 对象,而不是它的属性 href 。所以,正确的做法是:
window.location.href ='http://www.guffa.com ;
I have a javascript function that uses window.location. It works fine in Firefox and internet Explorer, but not in Chrome. I've tested this on both Ubunutu Hardy and Windows Vista. What is the underlying problem, and how can I circumvent it?
解决方案
The most common use of window.location is to make the browser load a new page. A common error is to assign the URL to the window.location object instead of it's property href. So, the correct way to do it is:
window.location.href = 'http://www.guffa.com';
这篇关于window.location在Chrome浏览器上不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
07-31 15:29