문법
.toggleClass()
예를 들어
$("p").toggleClass("melon");
p태그에 melon이라는 class를 추가하거나 제거합니다.
예제 코드
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<title>Home</title>
<style type="text/css">
.melon {
color: red;
}
</style>
</head>
<script type="text/javascript">
$(document).ready(function(){
$("#btn").click(function(){
$("p").toggleClass("melon");
})
});
</script>
<body>
<p>MelonPeach</p>
<button id="btn">버튼</button>
</body>
</html>
실행 테스트
See the Pen 043 by youngjins (@youngjins) on CodePen.