<asp:RadioButton Text="Male" value="M" ID="rbM" runat="server" GroupName="g" />
<asp:RadioButton Text="Female" value="F" ID="rbF" runat="server" GroupName="g" />
<asp:Button Text="Submit" runat="server" ID="btn" />
这是我的 JS:
$(document).ready(function () {
$("#<%=btn.ClientID%>").click(function () {
if ($("input[id='rbM']").is(":checked") == true) {
alert($(this).next('label').text());
}
else if ($("input[id='rbF']").is(":checked") == true) {
}
else {
alert("Please select an option!");
}
});
});
这是一个简单的单选按钮验证。如何在前两个 if 条件中获取文本?我在第一个 if 的警报中变得不确定?