$(document).ready(function(){ //初期設定 var target = $("#shop_name").val(); // console.log(target); if(target != ""){ $("#gravure .box").each(function(){ var d = $(this).attr("class").split(" "); if(d[1] != target){ $(this).hide(); }else{ $(this).show(); } }); } //プルダウンを変更した時 $("#shop_name").change(function(){ var shop = $(this).val(); // console.log(shop); $("#gravure .box").each(function(){ var d = $(this).attr("class").split(" "); if(shop == ""){ $(this).show(); }else{ if(d[1] != shop){ $(this).hide(); }else{ $(this).show(); } } }); }); });