网页动态获取RadioButtonList控件名
如下规则RadioButtonList_10_f110是动态1是动态RadioButtonList_10_f2RadioButtonList_10_f3RadioButt...
如下规则
RadioButtonList_10_f1 10 是动态 1是动态
RadioButtonList_10_f2
RadioButtonList_10_f3
RadioButtonList_11_f1
RadioButtonList_11_f2
RadioButtonList_11_f3
想写个循环获取这些有规则的控件名 求指教
我debug时发现 根本找不到radiobuttonList 这些控件
只能取到 form这一层
这些控件我是放在 td 中的
如下:
<form id="form1" runat="server">
<div>
<table >
<tr><td>
<asp:RadioButtonList ID="RadioButtonList_7_f1" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Value="0">是</asp:ListItem>
</asp:RadioButtonList>
</td></tr>
</table>
</div>
</form> 展开
RadioButtonList_10_f1 10 是动态 1是动态
RadioButtonList_10_f2
RadioButtonList_10_f3
RadioButtonList_11_f1
RadioButtonList_11_f2
RadioButtonList_11_f3
想写个循环获取这些有规则的控件名 求指教
我debug时发现 根本找不到radiobuttonList 这些控件
只能取到 form这一层
这些控件我是放在 td 中的
如下:
<form id="form1" runat="server">
<div>
<table >
<tr><td>
<asp:RadioButtonList ID="RadioButtonList_7_f1" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Value="0">是</asp:ListItem>
</asp:RadioButtonList>
</td></tr>
</table>
</div>
</form> 展开
3个回答
展开全部
js获得RadioButtonList的对象 然后循环获得id
document.getElementsByTagName()
document.getElementsByTagName()
更多追问追答
追问
后台 明显的嘛
追答
你用遍历前台控件的方法试试呢
类似
foreach(Control radio this.Control)
{
if(radio.GetType().ToString()=="System.Web.UI.WebControls.RadioButton")
{
//TODO
}
}
radio.ID
展开全部
js还是后台啊?
js的不知道对你有没有用
var array= Activity.split(",");
for(j=0;j<RadioButtonList1.cells.length;j++)
{
for(i=0;i<array.length;i++)
{
if(RadioButtonList1.cells[j].childNodes[1].innerText==array[i])
{
document.getElementById("RadioButtonList1_"+j).checked=true;
}
}
}
js的不知道对你有没有用
var array= Activity.split(",");
for(j=0;j<RadioButtonList1.cells.length;j++)
{
for(i=0;i<array.length;i++)
{
if(RadioButtonList1.cells[j].childNodes[1].innerText==array[i])
{
document.getElementById("RadioButtonList1_"+j).checked=true;
}
}
}
更多追问追答
追问
后台呀 .net
追答
for (int i = 0; i < this.RadioButtonList1.Items.Count; i++)
{
if (this.RadioButtonList1.Items[i].Selected == true)
{
Run_others += this.RadioButtonList1.Items[i].Value + ",";
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不如写个javascript把,在那里判断
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询