css display 속성을 이용해 컨텐츠 영역을 접거나 펼치는 방법 입니다.
if ( $('.box').css('display') === 'none' ) {
$('.box').show();
} else {
$('.box').hide();
}
위 코드를 자바스크립트로 변경하면 아래와 같습니다.
var box = document.querySelector('.box');
if ( box.style.display === 'none' ){
box.style.display = 'block';
} else {
box.style.display = 'none';
}
'Javascript' 카테고리의 다른 글
jQuery bind(), unbind(), trigger() (0) | 2013.04.01 |
---|---|
jQuery DOM 탐색 Selector (0) | 2013.04.01 |
jQuery if문 요소(element)가 있는지 확인 하기 (0) | 2013.03.14 |
jQuery scrollTop() (0) | 2013.01.28 |
jQuery animate() stop() 사용방법 (0) | 2013.01.27 |
개의 댓글