我正在尝试通过javascript重定向页面:
window.location('http://www.google.com');
但是在Firefox中,我收到了这个错误:
Error: uncaught exception: [Exception... "Cannot convert WrappedNative to function"
nsresult: "0x8057000d (NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN)" location: "JS frame ::
[url of my page] :: anonymous :: line 1809" data: no]
而且,我不知道这意味着什么。什么是JS框架?我没有在页面上使用任何框架。
难住了。
答案 0 :(得分:2)
这样做:
window.location.href = 'http://www.google.com';