在RadioButtonList选中固定项触发事件
我有一个RadioButtonList项为“0”“1”我想当我选“1”时能即时显示另一个RadioButtonList供进一步选择,而选“0”则无次选项第二个RadioB...
我有一个RadioButtonList 项为“0”“1”
我想当我选“1”时能即时显示另一个RadioButtonList供进一步选择,而选“0”则无次选项
第二个RadioButtonList就在第一个旁边,visible属性为false,当我一选中第一个的“1”时,立刻变成ture显示在旁边
谢谢各位老大不吝赐教
m(__)m 展开
我想当我选“1”时能即时显示另一个RadioButtonList供进一步选择,而选“0”则无次选项
第二个RadioButtonList就在第一个旁边,visible属性为false,当我一选中第一个的“1”时,立刻变成ture显示在旁边
谢谢各位老大不吝赐教
m(__)m 展开
展开全部
Radio里面的数据Value设置跟下面的SelectedValue相等就行了 像:<asp:ListItem Value="0">0</asp:ListItem>
protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (RadioButtonList1.SelectedValue == "0")
{
RadioButtonList2.Visible = false;
}
if (RadioButtonList1.SelectedValue == "1")
{
RadioButtonList2.Visible = true;
}
}
AutoPostBack设为true
protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (RadioButtonList1.SelectedValue == "0")
{
RadioButtonList2.Visible = false;
}
if (RadioButtonList1.SelectedValue == "1")
{
RadioButtonList2.Visible = true;
}
}
AutoPostBack设为true
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询