检索 Enyo 中按钮的名称
我正在 for 循环中动态加载图像。我有这些图像的点击事件。如何检索被单击的图像的名称?
I am loading images dynamically in a for loop. I have a click event for those images. How to retrieve the name of the image that was clicked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道你到底是怎么做的(一些示例代码可能会有所帮助),但为什么不为每个图像分配一个唯一的 id(使用循环计数器),然后检查 onclick 处理程序中发送事件?
I don't know exactly how you're doing things (some sample code might help) but why not assign a unique id (using the loop counter) to each image and then checking the id in the onclick handler for the element that sent the event?
onclick中传递了两个参数,一个是点击的发起者,另一个是事件。他们都是对象。
inSender
包含诸如名称、所有者、所有子项等内容...Two parameters are passed in the onclick, one is the originator of the click and the other is the event. They're both Objects.
inSender
contains things like the name, the owner of it, all it's children, etc...