<style>
$(function(){
// ν΄λμ€μ½μ
$('h2').addClass('heading2');
$('h2').addClass('title');
$('h2').addClass('w400');
//ν΄λμ€μ κ±°
$('h2').removeClass('title');
// 0,1μκ³ 0μμ 1λ‘, 1μμ 0μΌλ‘ μ νλλκ²μ ν κΈμ΄λΌ ν©λλ€
// w400μ΄λΌλ ν΄λμ€λͺ
μ΄ μμΌλ©΄ removeνκ³ w400μ΄λΌλ ν΄λμ€λͺ
μ΄ μμΌλ©΄ addν©λλ€
$('h2').toggleClass('.w400');
});
</style>