treeurl.htm 1.0 KB

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title></title>
  5. <script src="../../lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
  6. <link href="../../lib/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  7. <script src="../../lib/ligerUI/js/core/base.js" type="text/javascript"></script>
  8. <script src="../../lib/ligerUI/js/plugins/ligerTree.js" type="text/javascript"></script>
  9. <script type="text/javascript">
  10. $(function ()
  11. {
  12. $("#tree1").ligerTree({ url: 'tree.json' });
  13. });
  14. </script>
  15. </head>
  16. <body style="padding:10px">
  17. <div style="width:400px; position:relative; height:300px; display:block; margin:10px; background:white; border:1px solid #ccc; overflow:auto; ">
  18. <ul id="tree1">
  19. </ul>
  20. </div>
  21. <div style="display:none">
  22. </div>
  23. </body>
  24. </html>