asp.net使用jQuery获取RadioButtonList成员选中内容和值

这篇文章主要介绍了通过jQuery来获取RadioButtonList成员内容的方法,大家参考使用吧

复制代码 代码如下:


<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Web.Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script src="https://www.jb51.net/jquery-1.8.2.min.js" type="text/javascript"></script>
    <link href="https://www.jb51.net/Base.css" type="text/css" />
    <style type="text/css">

    </style>
    <script type="text/javascript">
        $(document).ready(function () {
            $("#<%=rblHobbies.ClientID%> input[type=radio]").bind("change", function () {
                if ($(this).val() != "") {
                     $("#message").text("Text:" + $(this).next().text() + "  Value:"+$(this).val());
                }

            });
        });

    </script>
</head>
<body>
    <form runat="server">
    <div>
        <fieldset>
            <p>
                请选择爱好</p>
            <asp:RadioButtonList  runat="server" >

                <asp:ListItem Value="1">音乐</asp:ListItem>
                <asp:ListItem Value="2">篮球</asp:ListItem>
                <asp:ListItem Value="3">美剧</asp:ListItem>
                <asp:ListItem Value="4">电影</asp:ListItem>

            </asp:RadioButtonList  >
        </fieldset>
        <br />
        <div></div>
    </div>
    </form>
</body>
</html>

您可能感兴趣的文章:

相关文章

最新评论

站长推荐

正版 Windows 10

正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248]

站长推荐

正版 Office 软件

Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]

大家感兴趣的内容

最近更新的内容

常用在线小工具

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjzssp.html