如何获取 Actionscript 3 中列表的选定值?

发布于 2024-12-11 05:31:53 字数 233 浏览 0 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(2

遥远的她 2024-12-18 05:31:53

试试这个:

if ( list.selectedItem != null && list.selectedItem.hasOwnProperty("label") ) {
    trace( "Selected label is: " + list.selectedItem.label );
}

Try this:

if ( list.selectedItem != null && list.selectedItem.hasOwnProperty("label") ) {
    trace( "Selected label is: " + list.selectedItem.label );
}
如果没有你 2024-12-18 05:31:53

您可以使用list.selectedItem.label检索标签

You can retrieve the label using list.selectedItem.label

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