ToggleClass.htm |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>ToggleClass() 메서드 토글링 </title> <style type="text/css"> .hidden { display:none;} </style> <script src="../jquery-1[1].3.2-vsdoc2.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { $('#btn').click(function () { $('#myLayer').toggleClass('hidden'); }); }); </script> </head> <body> <h3> 버튼이 클릭할때마다 보이기/숨기기</h3> <input id= "btn" type="button" value="버튼" /> <div id="myLayer" style="background-color:Yellow;"> 안녕하세요 !!!! </div> </body> </html> |
'.Net Project > Jquery 1.3.2' 카테고리의 다른 글
17장 JQuery 마우스 오버와 아웃 처리 ( Mouse Hover() ) (0) | 2009.11.06 |
---|---|
16장 JQuery 토글 ( Toggle() ) (0) | 2009.11.06 |
14장 JQuery 슬라이스 ( Slice() ) (0) | 2009.11.06 |
13장 JQuery 필터 활용 ( Filter() ) (0) | 2009.11.06 |
12장 JQuery Click 이벤트 Click 메서드로 사용 (Bind) (0) | 2009.11.06 |