forked from HANYANG/HANYANG_MES
13 lines
397 B
JavaScript
13 lines
397 B
JavaScript
$(".tab-container").each(function() {
|
|
$(".tab-menu li", this).on("click", function(e) {
|
|
e.preventDefault();
|
|
|
|
// 오타 수정 ('sttr' -> 'attr')
|
|
const idName = $(this).attr("id") + "-container";
|
|
|
|
// jQuery를 사용한 클래스 추가 및 제거
|
|
$(this).addClass("on").siblings().removeClass("on");
|
|
$("#" + idName).addClass("on").siblings().removeClass("on");
|
|
});
|
|
});
|