Flex4 查找所选 XML 项目的名称
我在 Flex4 中有一个 XML 对象,它正在填充一棵树(除其他外)。
当在树中单击所选项目时,我需要能够找到该项目的名称。
例如:
<Object id="">
<Image></Image>
<Cycle></Cycle>
</Object>
<Action>
<Hide></Hide>
</Action>
标签都是我预先定义的,所以我会知道它们是什么,但我需要能够知道用户选择的项目是否是“对象”并执行某些操作,或者如果他们选择“操作”执行某些操作别的。
在 flex4 中获取这些名称并进行比较的语法是什么?
谢谢
I have an XML object in Flex4 that is populating a tree (amongst other things).
I need to be able to find the name of the selected item when it is clicked in the tree.
For example:
<Object id="">
<Image></Image>
<Cycle></Cycle>
</Object>
<Action>
<Hide></Hide>
</Action>
The tags are all predefnied by me so I will know what they are, but I need to be able to know if the item a user has selected is "Object" and do something, or if they select "Action" do something else.
What is the syntax to get the names of these in flex4 and compare them?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有对 XML 节点的引用,则可以调用 name() 方法:
If you have a reference to the XML node, you can call the name() method: