admin管理员组文章数量:1344580
I am working on an AJAX system to submit a form, but I can't even get my JavaScript to load, the Firebug report is below.
missing ) after argument list
else if( httpRequest.responseText == 'already logged in' )\n
I poked around the internet and SO, but all I found was errors in quoting. (Example, Another Example). I don't have anything misquoted, so I really don't see what is going on. More of my code is below.
(Some unrelated function calls to remove loading messages are removed.)
if(httpRequest.responseText != "failure") // Works fine!
{
document.getElementById("result").innerHTML = "[Success message]";
setTimeout("2000", function(){ window.location.assign("[link to page]");
}
else if(httpRequest.responseText == 'already logged in') // Similar to above, but fails
{
document.getElementById("result").innerHTML = "[error message]";
}
else
{
document.getElementById("result").innerHTML = "[error message]";
}
Might anyone know why this error is called?
(For more members, it might be useful to outline what things cause this error, which would allow this page to work with other code)
I am working on an AJAX system to submit a form, but I can't even get my JavaScript to load, the Firebug report is below.
missing ) after argument list
else if( httpRequest.responseText == 'already logged in' )\n
I poked around the internet and SO, but all I found was errors in quoting. (Example, Another Example). I don't have anything misquoted, so I really don't see what is going on. More of my code is below.
(Some unrelated function calls to remove loading messages are removed.)
if(httpRequest.responseText != "failure") // Works fine!
{
document.getElementById("result").innerHTML = "[Success message]";
setTimeout("2000", function(){ window.location.assign("[link to page]");
}
else if(httpRequest.responseText == 'already logged in') // Similar to above, but fails
{
document.getElementById("result").innerHTML = "[error message]";
}
else
{
document.getElementById("result").innerHTML = "[error message]";
}
Might anyone know why this error is called?
(For more members, it might be useful to outline what things cause this error, which would allow this page to work with other code)
4 Answers
Reset to default 7the line
setTimeout("2000", function(){ window.location.assign("[link to page]");
misses a })
causing the next line to fail (the whole syntax is wrong anyway:)
it should be
setTimeout (function(){ window.location.assign("[link to page]") } , 2000 );
setTimeout
takes a function as the first parameter and an integer as the second one.
more here
If you split your code up a bit more you see the problem:
setTimeout("2000", function()
{
window.location.assign("[link to page]");
So you are missing a } and a );
setTimeout(function()
{
window.location.assign("[link to page]");
},2000);
Edit: The order of the arguments is wrong as well like Caspar pointed out.
setTimeout("2000", function(){ window.location.assign("[link to page]");
should be
setTimeout("2000", function(){ window.location.assign("[link to page]");});
You are missing the });
here
setTimeout("2000", function(){ window.location.assign("[link to page]");
should be
setTimeout("2000", function(){ window.location.assign("[link to page]"); });
本文标签: javascriptWhy would I be getting a quotmissing ) after argument listquot errorStack Overflow
版权声明:本文标题:javascript - Why would I be getting a "missing ) after argument list" error? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743758921a2534011.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论