728x90
300x250
SMALL
클릭했을 때 on클래스가 적용되어 있으면 제거 없으면 적용
<script>
$(document).ready(function(){
$(".btn").click(function(){
var $this = $(this);
if($this.hasClass("on")==false)
$this.addClass("on");
else
$this.removeClass("on");
})
});
</script>
<button class="btn">버튼</button>
같은 동작을 toggleClass() 메서드를 이용하면 더 간단하게 처리할 수 있다.
<script>
$(document).ready(function(){
$(".btn").click(function(){
var $this = $(this);
$this.toggleClass("on");
})
});
</script>
<button class="btn">버튼</button>
728x90
반응형
LIST
'javaScript > jQuery' 카테고리의 다른 글
랜덤하게 폰트 color, fontsize 변경하기 (0) | 2023.02.17 |
---|---|
클릭하면 패널박스 안에서 랜덤하게 움직이기 (0) | 2023.02.16 |
[jQuery]버튼을 클릭하면 width와 height 사이즈 변경 (0) | 2023.02.14 |
[jQuery] 폰트 사이즈 1씩 증가 (0) | 2023.02.13 |
[jQuery]width, height 값 구하기 (0) | 2023.02.12 |
댓글