$(function(){ // エリア選択時の背景色切り替え $(".category0").click(function(){switchBackgroundCategory0($(this).attr('id'));}); $(".category1").click(function(){switchBackgroundCategory1($(this).attr('id'));}); $(".category2").click(function(){switchBackgroundCategory2(null);}); $(".category0:checked").each(function(){ switchBackgroundCategory0($(this).attr('id')); }); $(".category1:checked").each(function(){ switchBackgroundCategory1($(this).attr('id')); }); initCategoryLabel('category'); $('a.clear').click(function(){clearBackground();}); }); function switchBackgroundCategory0(id) { clearBackground(); $("."+id).toggleClass('bg_all'); } function switchBackgroundCategory1(id) { clearBackground(); $("."+id+" + label").toggleClass('bg_pink'); } function switchBackgroundCategory2(id) { clearBackground(); } function clearBackground() { $(".category1Bg").removeClass('bg_all'); $(".category2 + label").removeClass('bg_pink'); }