如何获取 Actionscript 3 中列表的选定值?
我在 as3 中创建了一个列表 Companents,并使用 list.addItem({label: "Topman"}); 添加了项目 当我获取选定列表的值时
trace(list.selectedItem);
它返回[object Object]。
我该如何解决这个问题?任何人都可以帮助我。 提前致谢!
I create a list Companents in as3, and I added item using list.addItem({label: "Topman"});
while i get the value of Selected list trace(list.selectedItem);
it returns [object Object].
How can I solve this problem? Anybody help me.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
您可以使用
list.selectedItem.label
检索标签You can retrieve the label using
list.selectedItem.label