Changeset 8811 for temp/trunk/html


Ignore:
Timestamp:
2006/11/21 22:44:27 (20 years ago)
Author:
uehara
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/test/uehara/js/tree.js

    r8810 r8811  
    55 
    66var tree = ""; 
     7var count = 0; 
     8var arrTreeStatus = new Array(); 
     9 
    710// ¥Ä¥ê¡¼É½¼¨ 
    811function fnTreeView(view_id, arrTree) { 
     
    5255 
    5356function test() { 
    54     document.form1['test1'].value = tree; 
     57    document.form1['test1'].value = arrTreeStatus[count]; 
    5558} 
    56  
    5759 
    5860// ¥Ä¥ê¡¼ÉÁ²è 
     
    8183 
    8284// ³¬Áإĥ꡼¥á¥Ë¥å¡¼É½¼¨¡¦Èóɽ¼¨½èÍý 
    83 function fnTreeMenu(tName, type, imgName) { 
     85function fnTreeMenu(tName, type, imgName, path) { 
    8486 
    8587    tMenu = document.all[tName].style; 
     
    9799            fnChgImg(IMG_FOLDER_CLOSE, imgName); 
    98100        } 
    99          
     101        // ¾õÂÖ¤òÊÝ»ý 
     102        arrTreeStatus[count] = path; 
     103        count++; 
    100104        tMenu.display = "none"; 
    101105    } 
Note: See TracChangeset for help on using the changeset viewer.