js操作CheckBoxList实现全选、反选

对于CheckBoxList控件来说,一方面要实现大量数据在服务器端的绑定工作,另一方面往往要求实现全

选、反选等功能。虽然可以在服务器端完成这方面的工作,但这样一个简单的工作似乎更应该在客户端完

成。

       具体方法:

       在页面中放入一个CheckBoxList控件,并添加几项,用来分析其产生的HTML代码,这样在使用js进行

动态控制时,将会非常清晰其测试代码如下所示:

       <asp:CheckBoxList ID="CheckBoxList1" runat="server" CellPadding="3" CellSpacing="3"

            RepeatColumns="3">

            <asp:ListItem>1232</asp:ListItem>

            <asp:ListItem>254</asp:ListItem>

            <asp:ListItem Value="5643">5643</asp:ListItem>

            <asp:ListItem>789</asp:ListItem>

            <asp:ListItem>654</asp:ListItem>

            <asp:ListItem>564</asp:ListItem>

            <asp:ListItem>8564</asp:ListItem>

            <asp:ListItem>8564</asp:ListItem>

            <asp:ListItem>5452</asp:ListItem>

            <asp:ListItem>5641</asp:ListItem>

        </asp:CheckBoxList>

    在浏览器中查看,并对Html进行分析:以下是DropDownList控件生成的HTML代码。

<table id="CheckBoxList1" cellspacing="3" cellpadding="3" border="0">
         <tr>
            <td>
<input id="CheckBoxList1_0" type="checkbox" name="CheckBoxList1$0" /><label for="CheckBoxList1_0">1232</label>

           </td>

           <td><input id="CheckBoxList1_4" type="checkbox" name="CheckBoxList1$4" /><label for="CheckBoxList1_4">654</label>

          </td>

.......

</table>

     在这里,节选了部分代码,其中蓝色部分是我们关心的。在HTML中CheckBoxList生成了

许多input(type为checkbox),并且其ID为“CheckBoxList1_i”(i为数字)。这样我们只

需要知道一共有几项就可以轻松的实现js对它的控制。

     这些input都包含在一个id为CheckBoxList1的table中,因此可以通过:

document.getElementById("CheckBoxList1").getElementsByTagName("input").length

这一方法获取CheckBoxList一共有多少项,剩下的工作其实就很简单了,通过js更改每一个

checkbox的状态即可。先添加三个button,用来实现全选、反选及清除控制,如下所示:

          <input type="button" on click="checkAll()" value="check All" />

 

        <input type="button" on click="ReverseAll()" value="Reverse All" id="Button1" />   

        <input type="button" on click="deleteAll()" value="delete All" />

     添加全选、反选及清除函数如下:

     function checkAll(){

 

 

 

//            alert(document.getElementById("CheckBoxList1").getElementsByTagName("input").length);

            for(var i=0;i<document.getElementById("CheckBoxList1").getElementsByTagName("input").length;i++)

            {

                document.getElementById("CheckBoxList1_"+i).checked=true;

            }            

        }

        function deleteAll(){

            for(var i=0;i<document.getElementById("CheckBoxList1").getElementsByTagName("input").length;i++)

             {

                document.getElementById("CheckBoxList1_"+i).checked = false;

            }

        }

        function ReverseAll(){

            for(var i=0;i<document.getElementById("CheckBoxList1").getElementsByTagName("input").length;i++)

             {

                var objCheck = document.getElementById("CheckBoxList1_"+i);

                if(objCheck.checked)

                    objCheck.checked = false;

                else

                    objCheck.checked = true;

            }

        }

 

    OK,现在通过IE测试,绑定工作可以在后台,全选等辅助功能可以自由发挥了!!!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值