WEB开发网
开发学院WEB开发ASP.NET ASP.NET2.0下利用javascript实现TreeView中的chec... 阅读

ASP.NET2.0下利用javascript实现TreeView中的checkbox全选

 2006-07-21 17:13:06 来源:WEB开发网   
核心提示:<td><input id="chkall" type="checkbox" />全选/取消</td> 1 <script type="text/javascript"> 2 function chkAll()

<td><input id="chkall" type="checkbox" />全选/取消</td>
 1 <script type="text/javascript">
 2     function chkAll()
 3     {
 4       //debugger;
 5       var chkall= document.all["chkall"];
 6       var chkother= document.getElementsByTagName("input");
 7       for (var i=0;i<chkother.length;i++)
 8       {
 9         if( chkother[i].type=='checkbox')
10         {
11           if(chkother[i].id.indexOf('TreeView1')>-1)
12           {
13             if(chkall.checked==true)
14             {
15               chkother[i].checked=true;
16             }
17             else
18             {
19               chkother[i].checked=false;
20             }
21           }
22         }
23       }
24     }
25   </script>

http://xh3.cnblogs.com/archive/2006/07/20/456077.html

Tags:ASP NET 利用

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接