Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
做什么
array[i].count
在javascript中返回?它在actionscript中的等价物是什么?或者它如何在actionscript中实现?
假设这i是一个数字,这将简单地从对象中获取第 i 个元素,然后尝试解析该count对象的属性。
i
count
var elem = array[i]; elem.count;
这里的查找与在任何其他对象上的count查找没有什么不同count