블로그 이미지
Magic_kit
study 관련자료를 한곳으로 자기 개발 목적으로 재태크 재무 관리 목적으로 일상생활의 팁을 공유 하기 위하여 블로그를 개설 하였습니다.

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Category

Recent Post

Recent Comment

Archive

2009. 11. 12. 14:54 .Net Project/Jquery 1.3.2
반응형
TreeView.htm 
 간단설명)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
                    "
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title></title>
  <script src="../../jsp/jquery-1[1].3.2-vsdoc2.js" type="text/javascript"></script>
  <link rel="stylesheet"
href="
http://dev.jquery.com/view/trunk/plugins/treeview/demo/screen.css" type="text/css" />

  <link rel="stylesheet" href="
http://dev.jquery.com/view/trunk/plugins/treeview/jquery.treeview.css" type="text/css" />

  <script type="text/javascript" src="
http://dev.jquery.com/view/trunk/plugins/treeview/jquery.treeview.js"></script>
  <script type="text/javascript">
      $(document).ready(function () {
          $("#example").treeview();
      });
  </script>
 
</head>
<body>
  <ul id="example" class="filetree">
  <li><span class="folder">Folder 1</span>
   <ul>
    <li><span class="file">Item 1.1</span></li>
   </ul>
  </li>
  <li><span class="folder">Folder 2</span>
   <ul>
    <li><span class="folder">Subfolder 2.1</span>
     <ul>
      <li><span class="file">File 2.1.1</span></li>
      <li><span class="file">File 2.1.2</span></li>
     </ul>
    </li>
    <li><span class="file">File 2.2</span></li>
   </ul>
  </li>
  <li class="closed"><span class="folder">Folder 3 (closed at start)</span>
   <ul>
    <li><span class="file">File 3.1</span></li>
   </ul>
  </li>
  <li><span class="file">File 4</span></li>
 </ul>
</body>
</html>







반응형
posted by Magic_kit