YUI3调用函数
top.on('click', function(){
anim.run();
});
我有一个动画函数,想知道为什么我不能这样调用它
top.on('click', anim.run);
top.on('click', function(){
anim.run();
});
I have an anim function, and was wondering why I can't call it like this
top.on('click', anim.run);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者
or
因为在第二种情况下,
this
不是anim
,因为您正在检索run
函数,而不是从anim
调用它>。例如:
Because
this
is notanim
in the second case as you're retrieving therun
function and not calling it fromanim
.For example: