图像的鼠标事件

发布于 2024-12-24 17:30:29 字数 260 浏览 0 评论 0原文

我在循环中动态创建图像(flash builder 4.5),当我设置鼠标单击事件时,我使用这个:

image.addEventListener(MouseEvent.CLICK, function(e:MouseEvent):void{fromThumbnail(e,i)});

传递i。但是,当我单击任何图像时,函数缩略图会打印最后一个 i

这个问题有解决办法吗?

I dynamically create images in a loop (flash builder 4.5) and when I set mouse click event, I'm using this:

image.addEventListener(MouseEvent.CLICK, function(e:MouseEvent):void{fromThumbnail(e,i)});

to pass i. However, when I click on any image, the function thumbnail prints the last i.

Is there solution for this problem?

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

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

发布评论

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

评论(1

大海や 2024-12-31 17:30:29

如果“i”是实例变量,则 fromThumbnail(e,i); 将始终传递实例变量的当前值;不考虑将事件侦听器添加到图像时的值是什么。

如果您尝试引用添加了侦听器的图像,则可以在处理函数中使用 e.target

If 'i' is an instance variable, then fromThumbnail(e,i); will always pass the current value of the instance variable; with no consideration for what the value was when you added the event listener to the image.

If you're trying to reference the image that you added the listener on, then you could use e.target in your handler function.

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