Repeater内RadioButton.GroupName失效

最近在做项目时遇到要在repeater中显示多个radiobutton并且实现单选功能,于是很自然地就加上了GroupName,但事实是不行的,在repeater中的radiobutton呈现到页面的时候name会自动加上repeater的id、序列ct100和radiobutton的id,这就直接导致为什么GroupName会失效了。我在网上搜了有很多方法,但是都没适用的,比如用<input type=radio>、radiobuttonlist等,但是我既然用了radiobutton,就懒得换了,以下是我的代码实现:

页面

 <table>
<tr>
<asp:Repeater runat="server" ID="repbgs">
<ItemTemplate>
<td>
<asp:RadioButton runat="server" ID="rdo1" Text='<%# Eval("name") %>' />
</td>
</ItemTemplate>
</asp:Repeater>
</tr>
</table>

后台就一个绑定过程就不展示了,还有就是jQuery

 $(':input:radio').click(function () {
if ($(this).is(':checked')) {
$(this).is(':checked');
$(this).parents().siblings().children().removeAttr("checked");
}
});

以上就是我的简单实现

上一篇:使用JDBC的批处理功能


下一篇:学习总结------用JDBC连接MySQL