jquery radiobutton select change

来源:互联网 发布:无网络监控安装教程 编辑:程序博客网 时间:2024/04/28 02:05


                <asp:RadioButtonList ID="rbtResourceType" runat="server" class="radioItem" RepeatLayout="Flow" RepeatDirection="Horizontal" >
                        <asp:ListItem>代理招生</asp:ListItem>
                        <asp:ListItem>市场活动</asp:ListItem>
                        <asp:ListItem>老师推荐</asp:ListItem>
                        <asp:ListItem>学员推荐</asp:ListItem>
                        <asp:ListItem>其他</asp:ListItem>
               </asp:RadioButtonList>


        <script type="text/javascript">

            $(document).ready(function () {
                $(".radioItem").change(function () {                            
                    var selectedvalue = $("input[name='rbtResourceType']:checked").val();
                    alert(selectedvalue);
                });
            });

        </script>



0 0
原创粉丝点击