0

ActionScript で特定の属性を持つ XML 子要素のインデックスを取得する方法があるかどうかは誰にもわかりませんか?

言う...

foo.child.@attribute //index of

私はこのような方法を使用してみました:

foo.child.@attribute.childIndex()

しかし、それは戻ります-1

4

1 に答える 1

1

hasOwnPropertyメソッドの使用は私のために働きます:

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

ただし、withの要素@attributeが一意でない場合、正しいコードは次のとおりです。

foo.child.(hasOwnProperty("@attribute"))[0].childIndex()
于 2012-05-11T07:38:58.273 に答える