在幕后进行评估?
我听说当我这样做时:
<a onclick='foo()'></a>
在幕后,它会为我生成一个匿名函数,或者可能是一个评估函数......?我很困惑,因为我确实有一个函数 foo
,那么额外的代码在哪里?
我可以得到一些解释/澄清吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,确实如此。它生成一个匿名函数,其主体设置为您用引号括起来的内容(因此在执行时它将调用您的
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