码迷,mamicode.com
首页 > 其他好文 > 详细

控制一组多选框实现单选

时间:2016-03-09 17:40:27      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

 

<!--Jquery代码-->

$(‘:checkbox‘).click(function() {
            var $this = $(this);
            if ($this.parent().hasClass(‘radio‘)) {
            var checkboxs = $this.parent().children(‘:checkbox‘);
            checkboxs.each(function(i) {
              if (i != checkboxs.index($this)) {
                     $(this).removeAttr(‘checked‘);
              }
         });
}

});

<asp:CheckBoxList runat="server" ID="chl_EquipMode" RepeatDirection="Horizontal" AutoPostBack="false" CssClass="radio">
    <asp:ListItem Value="备案">备案</asp:ListItem>
    <asp:ListItem Value="出口前">出口前</asp:ListItem>
    <asp:ListItem Value="报核前 ">报核前 </asp:ListItem>
</asp:CheckBoxList>

控制一组多选框实现单选

标签:

原文地址:http://www.cnblogs.com/chenls/p/5258792.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!