$('#x').click(function(){
$('#x').removeClass('linex').addClass('line');
})
.line {
color: red;
}
.linex {
color: blue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id='x' class='max linex'>line</div>
在這裏我的代碼,我把全班學生分成line(red)
當我在DIV上單擊,但我想它是可逆的,所以當我再次同時點擊它在line
再次變成linex(blue)