0

我有一个从 php Web 服务方法获取其数据的下拉列表。此响应类似于:

数组('id'=>整数,'name'=>'lin')

当页面加载时,我想最初将所选索引设置为“lin”。我该怎么做呢 ?

4

1 回答 1

0

您只需要设置下拉列表控件的 selectedIndex 属性。

前任。

dwl.selectedIndex = 1; // "Index of "lin"

你应该做这个。

var iIndex:int;

for(var i:int = 0; i < arrResponse.length; i++)
{

       // if(Array(arrResponse[i])[1] == "lin")

       if(Array(arrResponse[i]).name == "lin") {
            iIndex = i;

       }

}

dwl.selectedIndex = iIndex;
于 2010-11-30T10:54:10.247 回答