码迷,mamicode.com
首页 > Web开发 > 详细

CheckBoxList用JS实现单元

时间:2014-10-28 12:06:02      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   ar   java   for   sp   on   cti   

JS实现单选                       

<script type="text/javascript">
  function CheckSelect() {

    //得到CheckBoxList 的ID

    var tb = document.getElementById("<%=cblHandleContent.ClientID%>");

    //循环得到CheckBoxList 的子集,并控制它的选中状态

    for (var i = 0; i < tb.cells.length; i++) {
      var chk = tb.cells[i].firstChild;
      if (chk != event.srcElement) {
        chk.checked = false;
        }
      }
 }
</script>

后台绑定好的服务器控件

<asp:CheckBoxList onclick="javascript:CheckSelect();" ID="cblHandleContent" RepeatDirection="Horizontal" runat="server" >
</asp:CheckBoxList>          

 

CheckBoxList用JS实现单元

标签:style   io   color   ar   java   for   sp   on   cti   

原文地址:http://www.cnblogs.com/zhumengmeng/p/4056368.html

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