zTreeObj.getNodes.html 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Function()</span><span class="path">zTreeObj.</span>getNodes</h2>
  4. <h3>Overview<span class="h3_info">[ depends on <span
  5. class="highlight_green">jquery.ztree.core</span> js ]</span></h3>
  6. <div class="desc">
  7. <p></p>
  8. <div class="longdesc">
  9. <p>Get all of the nodes in zTree</p>
  10. <p class="highlight_red">Please use zTree object to executing the method.</p>
  11. </div>
  12. </div>
  13. <h3>Function Parameter Descriptions</h3>
  14. <div class="desc">
  15. <h4><b>Return </b><span>Array(JSON)</span></h4>
  16. <p>return all of the nodes</p>
  17. <p class="highlight_red">1. This array is a collection of the root nodes (the default child nodes are in the
  18. 'children' attributes);</p>
  19. <p class="highlight_red">2. Traverse all the nodes need to use recursion, or the use of transformToArray()
  20. method make the nodes to be a simple array.</p>
  21. <p class="highlight_red">3. For the asynchronous loading mode, can't get the nodes which are yet loaded.</p>
  22. </div>
  23. <h3>Examples of function</h3>
  24. <h4>1. Get all of the nodes</h4>
  25. <pre xmlns=""><code>var treeObj = $.fn.zTree.getZTreeObj("tree");
  26. var nodes = treeObj.getNodes();
  27. </code></pre>
  28. </div>
  29. </div>