<script>
$("input[type='checkbox']").change(function(){
$("input[type='checkbox'][name='"+ $(this).attr("name")+ "']").each(function(){
if($(this).is(":checked")){
//$(this).parent().addClass("selected");
}else{
//$(this).parent().removeClass("selected");
}
});
});
// 化粧箱「希望する」にチェックが入っている場合 入力欄を表示
$(function () {
if($("#noshi").is(":checked")){
$("#noshi").parent().addClass("selected");
}else{
$("#noshi").parent().removeClass("selected");
}
});
// 化粧箱「希望する」のチェックが外れた場合 入力値をクリア
$("input[type='checkbox']").change(function(){
$("input[type='checkbox'][name='"+ $(this).attr("name")+ "']").each(function(){
if($(this).is(":checked")){
}else{
$(this).parent().find("div").find("option").prop("selected",false);
$(this).parent().find("div").find('input:text').val("");
}
});
});
// 酒類購入年齢チェック
$("#check").change(function(){
if($(this).is(":checked")){
$(this).parent().parent().parent().addClass("selected");
}else{
$(this).parent().parent().parent().removeClass("selected");
}
});
</script>