我知道可以在 radioGroupButton 的更改处理程序或项目单击处理程序上获取选定的值。像这样:
protected function rb1_itemClickHandler(event:ItemClickEvent):void
{
var selectedValue:String=event.currentTarget.selectedValue.toString();
}
但我需要的是所选值的索引。知道怎么做吗?
我知道可以在 radioGroupButton 的更改处理程序或项目单击处理程序上获取选定的值。像这样:
protected function rb1_itemClickHandler(event:ItemClickEvent):void
{
var selectedValue:String=event.currentTarget.selectedValue.toString();
}
但我需要的是所选值的索引。知道怎么做吗?