熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

利用javascript實現TreeView中的checkbox全選

2022-06-13   來源: .NET編程 

  <td><input id=chkall type=checkbox onclick=chkAll(); />全選/取消</td>

  <script type=text/javascript>

  function chkAll()

  {

  //debugger;

  var chkall= documentall[chkall];

  var chkother= documentgetElementsByTagName(input);

  for (var i=;i<chkotherlength;i++)

  {

  if( chkother[i]type==checkbox)

  {

  if(chkother[i]idindexOf(TreeView)>)

  {

  if(chkallchecked==true)

  {

  chkother[i]checked=true;

  }

  else

  {

  chkother[i]checked=false;

  }

  }

  }

  }

  }

  </script>


From:http://tw.wingwit.com/Article/program/net/201311/11701.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.