ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML相关的知识,希望对你有一定的参考价值。

var products:Array = new Array();

products.push({name:"Laptop", id:111, price:2999.99});
products.push({name:"Mouse", id:222, price:49.99});
products.push({name:"Phone", id:333, price:199.99});

var inventory:XML = <inventory/>;

for each (var o:Object in products)
{
	inventory.appendChild(<product id={o.id} price={o.price}>{o.name}</product>);
}

以上是关于ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 在AS3中设置深度

ActionScript 3 AS3:在数组中搜索

ActionScript 3 在AS3中生成网格

ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML

ActionScript 3 AS3 getURL / navigateToURL(如何在AS3中创建可点击链接)

ActionScript 3 在Flex 3上的AS3中嵌入字体