0

我知道可以在 radioGroupButton 的更改处理程序或项目单击处理程序上获取选定的值。像这样:

protected function rb1_itemClickHandler(event:ItemClickEvent):void
{
    var selectedValue:String=event.currentTarget.selectedValue.toString();          
}

但我需要的是所选值的索引。知道怎么做吗?

4

1 回答 1

1

event.index像这个例子一样检查:

protected function rb1_itemClickHandler(event:ItemClickEvent):void
{
    trace(event.index);
}
于 2012-04-30T08:43:22.413 回答