You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.2 KiB

  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. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Untitled 1</title>
  6. <link rel="stylesheet" type="text/css" href="jqueryFileTree.css" media="screen" />
  7. <script type="text/javascript" src="jquery-1.3.2.min.js"></script>
  8. <script type="text/javascript" src="jquery.easing.1.3.js"></script>
  9. <script type="text/javascript" src="jqueryFileTree.js"></script>
  10. <script type="text/javascript">
  11. $(document).ready( function() {
  12. $('#JQueryFTD_Demo').fileTree({
  13. root: '/DMImg/',
  14. script: 'jqueryFileTree.aspx',
  15. expandSpeed: 1000,
  16. collapseSpeed: 1000,
  17. multiFolder: true
  18. }, function(file) {
  19. alert(file);
  20. });
  21. });
  22. </script>
  23. <style type="text/css" media="screen">
  24. .demo
  25. {
  26. width: 300px;
  27. height: 400px;
  28. border-top: solid 1px #BBB;
  29. border-left: solid 1px #BBB;
  30. border-bottom: solid 1px #FFF;
  31. border-right: solid 1px #FFF;
  32. background: #FFF;
  33. overflow: scroll;
  34. padding: 5px;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div id="JQueryFTD_Demo" class="demo"></div>
  40. </body>
  41. </html>