Actionscript 通过动态标签获取 XML 元素
我知道我可以访问带有标签名称“page”的 XML 元素,如下所示:
xml_variable.page[i].toString();
但这不是我想要的。
我想要做的是访问 XML 元素,其标签名称等于 Actionscript 中的字符串变量:
var page:String = getCurrentPage();
xml_variable.page[i].toString());
我已经在 javascript 中完成了此操作,想知道在 Actionscript 3 中是否可能。提前致谢!
I know that I can access an XML Element with tag name 'page' like so:
xml_variable.page[i].toString();
This is not what I want, however.
What I want to do is access the XML Element with the tag name equal to a String variable in Actionscript:
var page:String = getCurrentPage();
xml_variable.page[i].toString());
I've done this in javascript and am wondering if it is possible in Actionscript 3. Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效:
This should work: