Flash Player 6.0.79。
Flash MX 2004。
listInstance
.replaceItemAt(index
,label
[,data
])listInstance
.replaceItemAt(index
,itemObject
)
index
一个大于零且小于 List.length
的数字,指明要插入项目的位置(新项目的索引)。
label
一个字符串,它指明新项目的标签。
data
项目的数据。此参数是可选参数,它可以是任何类型。
itemObject
。 用作项目的对象,通常含有 label
和 data
属性。
无。
方法;替换 index 参数指定的索引处的项目内容。
调用此方法会修改 List 组件的数据提供程序。如果与其他组件共享数据提供程序,那些组件也将会更新。
以下范例更改了第四索引的位置:
myList.replaceItemAt(3, "new label");