
<asp:RadioButtonList ID="rblSurvey" runat="server">
<asp:ListItem Text="1" Value="1"></asp:ListItem>
<asp:ListItem Text="2" Value="2"></asp:ListItem>
<asp:ListItem Text="3" Value="3"></asp:ListItem>
</asp:RadioButtonList>
<asp:ListItem Text="1" Value="1"></asp:ListItem>
<asp:ListItem Text="2" Value="2"></asp:ListItem>
<asp:ListItem Text="3" Value="3"></asp:ListItem>
</asp:RadioButtonList>
jquery获取:

var checkrad=$("#<%=rblSurvey.ClientID %> input[checked]").val();
var checkrad=$("#<%=rblSurvey.ClientID %> :radio[checked]").val();
var checkrad=$("#<%=rblSurvey.ClientID %> :radio[checked]").val();