AdminTree.js
上传用户:lsj999sz
上传日期:2022-06-15
资源大小:4717k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

Java

  1. var isIE = true;
  2. var imgUp = "images/arrowUp.gif" ;
  3. var imgDn = "images/arrowDn.gif" ;
  4. function expandIt( head, fExpandOnly )
  5. {
  6. //alert(!fExpandOnly);
  7. var bulletImg ;
  8. var allCol = "document." + ( isIE ? "all." : "" ) + head ;
  9. var parentDiv = eval( allCol + "Parent" );
  10. var childDiv  = eval( allCol + "Child" );
  11. if ( isIE )
  12. {
  13. if ( parentDiv )
  14. bulletImg = parentDiv.children( 0 ).children( 'imEx' );
  15. if ( childDiv )
  16. {
  17. if ( childDiv.style.display == "block" && (!fExpandOnly) )
  18. {
  19. childDiv.style.display = "none" ;
  20. if ( bulletImg )
  21. bulletImg.src = imgUp ;
  22. }
  23. else
  24. {
  25. childDiv.style.display = "block" ;
  26. if ( bulletImg )
  27. bulletImg.src = imgDn ;
  28. }
  29. }
  30. }
  31. else
  32. {
  33. if ( parentDiv )
  34. bulletImg = parentDiv.document.images[ 'imEx' ];
  35. if ( childDiv )
  36. {
  37. if ( childDiv.visibility == "hide" )
  38. {
  39. childDiv.visibility = "show" ;
  40. if ( bulletImg )
  41. bulletImg.src = imgDn ;
  42. }
  43. else if ( ! fExpandOnly ) 
  44. {
  45. childDiv.visibility = "hide";
  46. if ( bulletImg )
  47. bulletImg.src = imgUp ;
  48. }
  49. }
  50. }
  51. return false ; // cancels event
  52. }
  53. function doClick ( )
  54. {
  55. el = event.srcElement;
  56. while ( el && el.tagName != "A" ) 
  57. {
  58. el = el.parentElement ;
  59. }
  60. if ( ! el ) return ;
  61. if ( el.target != "main" ) return ;
  62. hiliteSel( el );
  63. }
  64. var prevSel = null ;
  65. function hiliteSel ( selLink )
  66. {
  67. var selColor = "red" ;
  68. if ( prevSel )
  69. {
  70. prevSel.style.color = prevSel.prevColor ;
  71. }
  72. prevSel = selLink ;
  73. prevSel.prevColor = selLink.style.color ;
  74. selLink.style.color = selColor ;
  75. }
  76. function init() {
  77.   document.onclick = doClick ;
  78.   expandIt("head2");
  79.   //hiliteSel(ttt);
  80. //  parent.frames("Main").location.href = "/gtc/programMgr.html";
  81. }
  82. if ( screen.colorDepth > 8 )
  83. {
  84. // document.write( "<STYLE>BODY{background-image:url(/images/ai/tile_nav.jpg);}</STYLE>" );
  85. }
  86. var licenseID ='01-0006-0038-69648' ;
  87. var pendingChanges =false ;