본문 바로가기

JavaScript/jQuery

[jQuery] 자신을 제외한 객체 선택 .not()

var obj = $("a");
obj.click(function(){
	$(this).addClass("on");
	obj.not($(this)).removeClass("on");
});


예제

A B C D E