如何在AS3中检索具有特定属性的XML元素的索引?

时间:2012-05-11 00:45:33

标签: xml indexing actionscript

有没有人知道是否有办法在ActionScript中检索具有特定属性的XML子元素的索引?

说...

foo.child.@attribute //index of

我尝试使用这样的方法:

foo.child.@attribute.childIndex()

但它会返回-1

1 个答案:

答案 0 :(得分:1)

使用hasOwnProperty方法对我有用:

foo.child.(hasOwnProperty("@attribute")).childIndex()

但如果@attribute的元素不唯一,那么正确的代码是:

foo.child.(hasOwnProperty("@attribute"))[0].childIndex()