问题描述
小弟我现在有个问题,在javascript中,也就是脚本中怎么操作RadioButtonList控件,<asp:RadioButtonListID="RadioButtonList1"runat="server"RepeatDirection="Horizontal"RepeatLayout="Flow"><asp:ListItemText="支持"Value="1"Selected=True></asp:ListItem><asp:ListItemText="不支持"Value="0"></asp:ListItem></asp:RadioButtonList>默认时是"支持"被选种,当我点击按钮(在窗体中设置的按钮)后,想选种"不支持"怎么实现,请帮忙,我没怎么用过脚本
解决方案
解决方案二:
<scripttype="text/javascript">functionunsupport1(){varsel=document.getElementById("RadioButtonList1");sel.childNodes[2].checked=true;}functionunsupport2(){document.getElementById("RadioButtonList1_1").checked=true;}functionunsupport3(){varinput=document.getElementsByName("RadioButtonList1");for(vari=0;i<input.length;i++){if(input[i].value=="0"){input[i].checked=true;}}}</script>
解决方案三:
谢谢你大虾让我好好看看
解决方案四:
来晚了,,:)