首先说明,RadioButtonList对象是动态生成的,并不是在窗体中的固定的。
一、动态生成RadioButtonList的代码
RadioButtonList Myrb = new RadioButtonList();//显示选项单选题目、对错题
Myrb.ID = "Myrb"; //
Myrb.EnableViewState = true;
Myrb.RepeatDirection = RepeatDirection.Horizontal;
Myrb.RepeatLayout = RepeatLayout.Flow;
Myrb.TextAlign = TextAlign.Left;//文字显示在控件左边
this.Panel1.Controls.Add(Myrb);
二、在客户端js获取RadioButtonList的值
var r = document.getElementById("Myrb");
var p = r.getElementsByTagName("input");
for(var i=0;i<p.length;i++)
{
if(p[i].checked)
{
alert(i);
}
}