我有这个 XML:
var myNode:XML = <node attribute="123"/>
我知道如何向节点添加属性:
myNode.@otherAttribute = "abc";
但这会将属性添加到末尾。如果我想将它添加为第一个属性怎么办?我想拥有 :
<node otherAttribute="abc" attribute="123"/>
insertChildAfter()
我知道可以使用or将子节点添加到特定位置,insertChildBefore()
但我不知道属性是否可能。