Chrome - 评估 - 函数()
为什么
SyntaxError: Unexpected token (
当我尝试调用时 Chrome 会抛出异常:
eval("function(){alert('test')}")
?
Why is Chrome throwing
SyntaxError: Unexpected token (
when i try to call:
eval("function(){alert('test')}")
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Chrome 抛出 SyntaxError 因为你要么需要 () 围绕你的函数,要么你需要命名它。
两者都应该正常工作。
Chrome is throwing the SyntaxError because you either need () around your function or you need to name it.
either should work properly.
奇怪的是,Safari 5.1 和 Chrome 13.0.782.220 在匿名函数的这种特殊情况下确实需要外括号。我不知道为什么,因为没有括号的表达并不比有括号的表达更模糊或更不有用。 Firefox 6.0.2 没有括号就非常满意。
有谁知道 Javascript 语言规范是否指定了这些外括号以及它们对于匿名函数以外的情况是否是必需的?
Oddly, Safari 5.1 and Chrome 13.0.782.220 do require outer parens in this special case of anonymous functions. I have no idea why, as the expression is no more ambiguous or less useful without the parens than with. Firefox 6.0.2 is perfectly happy without the parens.
Does anyone know whether the Javascript language spec specifies these outer parens and whether they're necessary for cases other than anonymous functions?