ご予約フォーム
は必須になります。
送信完了ページは @はあと・くりにっく のものが表示されます。
$(".selection").change(function(){ var value = $('option:selected').val(); var radioValue = $('radio:selected').val(); if(value == 'オープンルーム'){ $('.openroom').hide(); }else{ $('.openroom').show(); } }); $(".first input").change(function(){ if($("input:radio[value='ある']:checked").val()){ $('.sexType').hide(); $('.sexType input').prop('disabled',true); $('.age').hide(); $('.age select').prop('disabled',true); $('.Second_time').show(); $('.know').hide(); $('#root').prop('disabled',true); $('#know_radio').prop('disabled',true);
}else{ $('.sexType').show(); $('.age').show(); $('.Second_time').hide(); $('.know').show(); } }); $(".people input").change(function(){ if($("input:radio[value='夫婦(カップル)']:checked").val()){ $('.counselor').show(); }else{ $('.counselor').hide(); } }); $(".children input").change(function(){ if($("input:radio[value='いる']:checked").val()){ $('.child').show(); }else{ $('.child').hide(); } }); $("#root").change(function(){ var value2 = $('#root').val(); if(value2 == "その他"){ $('.detail').show(); } else{ $('.detail').css('display','none'); } }); // プルダウン変更時に遷移 $('select[name=お申込みいただくのは]').change(function() { var value = $('option:selected').val(); if(value == 'オープンルーム' || value == 'カウンセリング'){ console.log('OK'); }else if ($(this).val() != '') { window.location.href = $(this).val(); } });