程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> ASP.NET2.0下利用javascript實現TreeView中的checkbox全選

ASP.NET2.0下利用javascript實現TreeView中的checkbox全選

編輯:.NET實例教程

<td><input id="chkall" type="checkbox" onclick="chkAll();" />全選/取消</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      &nbs
p;      }
24         }
25     </script>

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved