TreeView.htm |
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>트리뷰 컨트롤</title>
<style type="text/css">
fieldset {
width:250px;
}
</style>
<script src="../../js/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function()
{ //[1] 리스트의 기본 모양 지정 : //<ul>를 자식으로 가지지 않는 li의 불릿기호는 기본 모양 $('li:not(:has(ul))').css({
cursor: 'default',
'list-style-image': 'none'
}); //[2] 자식 요소를 갖는 li에 대해서는 plus.gif를 지정 $('li:has(ul)')
//자식 요소를 갖는 요소에 대해서 .css({ cursor: 'pointer', 'list-style-image':
'url(plus.gif)' })//+기호설정 .children().hide(); //자식 요소 숨기기 //[3] +로 설정된 항목에 대해서 click 이벤트 적용 $('li:has(ul)').click(function(event) { //this ==
event.target으로 현재 선택된 개체에 대해서 처리 if
(this == event.target){ //숨겨진 상태면 보이고 -기호로 설정 //그렇지 않으면 숨기고 +기호로 설정 if ($(this).children().is(':hidden')) { //보이기 $(this).css('list-style-image',
'url(minus.gif)')
.children().slideDown(); } else { //숨기기 $(this).css('list-style-image',
'url(plus.gif)') .children().slideUp(); } } return false; });
});
</script> </head> <body>
<fieldset>
<legend>트리뷰 구현하기</legend>
<ul> <li>닷넷코리아</li> <li>자바캠퍼스</li> <li>비주얼아카데미 <ul> <li>라이센스마스터</li> <li>닷넷마스터 <ul> <li>C#</li> <li>ASP.NET</li> <li>SilverLight</li> </ul> </li> <li>자바마스터</li> </ul> </li>
</ul>
</fieldset> </body> </html> |
결과화면 |
[그림54-1] |
'jQuery | javascript | CSS' 카테고리의 다른 글
56.jQuery - load() 메서드 ( 09.Ajax ) (0) | 2009.11.13 |
---|---|
55.jQuery - 워터마크 텍스트박스 ( 13.Sample ) (0) | 2009.11.12 |
-- 현재 까지의 jQuery 소스6 -- (0) | 2009.11.12 |
53.jQuery - stop 메서드로 다중 효과 구현 ( 08.Effects ) (0) | 2009.11.12 |
52.jQuery - animate 메서드로 다중 효과 구현 ( 08.Effects ) (0) | 2009.11.12 |
Comments