Usando javascript para implementar todas las selecciones de casillas de verificación en TreeView bajo ASP.NET2.0
Autor:Eve Cole
Fecha de actualización:2009-06-30 17:01:54
全选/取消 | 1
2 funciones chkAll()
3 {
4 //depurador;
5 var chkall= documento.all["chkall"];
6 var chkother= document.getElementsByTagName("entrada");
7 para (var i=0;i 8 {
9 si (chkother[i].type=='casilla de verificación')
10 {
11 si(chkother[i].id.indexOf('TreeView1')>-1)
12 {
13 si (chkall.comprobado == verdadero)
14 {
15 chkother[i].checked=true;
16 }
17 más
18 {
19 chkother[i].checked=false;
20 }
21 }
22 }
23 }
24 }
25 http://xh3.cnblogs.com/archive/2006/07/20/456077.html