Chrome - 评估 - 函数()

发布于 2024-11-06 19:02:22 字数 169 浏览 0 评论 0原文

为什么

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请别遗忘我 2024-11-13 19:02:22

Chrome 抛出 SyntaxError 因为你要么需要 () 围绕你的函数,要么你需要命名它。

//This defines a as the function
eval("function a(){alert('foo')}");

//This returns the anonymous function
eval("(function(){alert('foo')})");

两者都应该正常工作。

Chrome is throwing the SyntaxError because you either need () around your function or you need to name it.

//This defines a as the function
eval("function a(){alert('foo')}");

//This returns the anonymous function
eval("(function(){alert('foo')})");

either should work properly.

不及他 2024-11-13 19:02:22

奇怪的是,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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文