AS3中的XML属性访问

时间:2009-12-17 19:36:43

标签: xml flex actionscript-3 e4x

我有一个xml文件(用URLLoader加载),如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <localizations>
        <words>
            <Brand us="Brand Here"></Brand>
        </words>
    </localizations>
    <world squareunits="100"></world>
</root>

加载后,使用E4X或纯AS3访问 world.squareunits 的最快捷方式是什么?

1 个答案:

答案 0 :(得分:4)

var xml : XML = new XML( yourStringHere );
trace( xml.world.@squareunits );