首页 > web前端 > js教程 > jquery判断RadioButtonList和RadioButton中是否有选中项示例_jquery

jquery判断RadioButtonList和RadioButton中是否有选中项示例_jquery

WBOY
发布: 2016-05-16 17:21:08
原创
1487 人浏览过
复制代码 代码如下:

 <%--Body 代码--%> <BR><div> <BR><asp:RadioButtonList ID="RadioButtonList1" runat="server"> <BR><asp:ListItem Value="A">a</asp:ListItem> <BR><asp:ListItem Value="B">b</asp:ListItem> <BR></asp:RadioButtonList> <br><br><asp:RadioButton ID="RadioButton1" GroupName="RBtn" Text="男" runat="server" Checked="true" /> <BR><asp:RadioButton ID="RadioButton2" GroupName="RBtn" Text="女" runat="server" /> <br><br><asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="Button1_ClientClick()"></asp:Button> <BR></div>
登录后复制


复制代码 代码如下:

<%--Head 代码--%> <BR><script language="javascript" type="text/javascript" src="js/jquery-1.9.1.js"></script> <BR><script language="javascript" type="text/javascript"> <br><br>function Button1_ClientClick() <BR>{ <BR>alert($("input[name='RadioButtonList1']:checked").val()); // 若都没有选中,则弹出“undefined”,若有选中的,则弹出对应的 Value 值 <BR>if(document.getElementById("RadioButton1").checked==true) // 若RadioButton1被选中 <BR>{ <BR>alert($("#RadioButton1:checked").val()); //弹出 RadioButton1 <BR>alert($("#RadioButton2:checked").val()); //弹出 undefined <BR>alert($("#RadioButton1:checked").val()=="RadioButton1"); //弹出 true <BR>} <BR>return false; //暂时不用传到后台 <BR>} <BR></script> <BR>
登录后复制

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板