draggable.htm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 src="../../lib/ligerUI/js/plugins/ligerDrag.js" type="text/javascript"></script>
  10. <script type="text/javascript">
  11. $(function ()
  12. {
  13. window['t'] =
  14. $("#tree1").ligerTree({
  15. nodeDraggable: true,
  16. data: [
  17. { text: '节点1', children: [
  18. { text: '节点1.1' },
  19. { text: '节点1.2' },
  20. { text: '节点1.3', children: [
  21. { text: '节点1.3.1' },
  22. { text: '节点1.3.2' }
  23. ]
  24. },
  25. { text: '节点1.4' }
  26. ]
  27. },
  28. { text: '节点2' },
  29. { text: '节点3' },
  30. { text: '节点4' }
  31. ]
  32. });
  33. });
  34. </script>
  35. </head>
  36. <body style="padding: 10px">
  37. <div id="message"></div>
  38. <div style="width: 200px; height: 300px; margin: 10px; float: left; border: 1px solid #ccc;
  39. overflow: auto;">
  40. <ul id="tree1">
  41. </ul>
  42. </div>
  43. <div style="display: none">
  44. </div>
  45. </body>
  46. </html>