在幕后进行评估?

发布于 2024-12-09 23:56:16 字数 190 浏览 2 评论 0 原文

我听说当我这样做时:

<a onclick='foo()'></a>

在幕后,它会为我生成一个匿名函数,或者可能是一个评估函数......?我很困惑,因为我确实有一个函数 foo,那么额外的代码在哪里?

我可以得到一些解释/澄清吗?

I heard that when I'm doing this:

<a onclick='foo()'></a>

behind the scenes, it generates me an anonymous function, or maybe an eval'd function...? I'm confused, because I do have a function foo, so where is the extra code?

Could I please get some explanation/clarification ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

人心善变 2024-12-16 23:56:16

是的,确实如此。它生成一个匿名函数,其主体设置为您用引号括起来的内容(因此在执行时它将调用您的 foo() )。

当您在函数中放置断点并在命中断时查看堆栈跟踪时,可以观察到这一点。

更新

一些插图:Firebug/Firefox (更多 Firebug),Chrome

Yes, it does. It generates an anonymous function, which has body set to what you've enclosed in quotes (so it will call your foo() when executed).

It can be observed when you put a breakpoint in your function and look at the stack trace when it gets hit.

Update

Some illustations: Firebug/Firefox (more Firebug), Chrome

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