有这个代码
var images:XML =
<elements>
<el data-custom="abc"/>
<el data-custom="def"/>
<el data-custom="ghi"/>
</elements>
如何使用 e4x 表达式获取属性值?请注意属性名称中的破折号“-”字符。我在 Flex 中使用它,但它可能是 E4X 标准的一般问题。
你显然不能使用:
trace(elements.el.@data-custom)