app/template/nissinham/Block/script_shopping_checkbox.twig line 1

Open in your IDE?
  1. <script>
  2. $("input[type='checkbox']").change(function(){
  3. $("input[type='checkbox'][name='"+ $(this).attr("name")+ "']").each(function(){
  4.     if($(this).is(":checked")){
  5.       //$(this).parent().addClass("selected");
  6.     }else{
  7.       //$(this).parent().removeClass("selected");
  8.     }
  9.   });
  10. });
  11. // 化粧箱「希望する」にチェックが入っている場合 入力欄を表示
  12. $(function () {
  13.     if($("#noshi").is(":checked")){
  14.       $("#noshi").parent().addClass("selected");
  15.     }else{
  16.       $("#noshi").parent().removeClass("selected");
  17.     }
  18. });
  19. // 化粧箱「希望する」のチェックが外れた場合 入力値をクリア
  20. $("input[type='checkbox']").change(function(){
  21. $("input[type='checkbox'][name='"+ $(this).attr("name")+ "']").each(function(){
  22.     if($(this).is(":checked")){
  23.     }else{
  24.      $(this).parent().find("div").find("option").prop("selected",false);
  25.      $(this).parent().find("div").find('input:text').val("");
  26.     }
  27.   });
  28. });
  29. // 酒類購入年齢チェック
  30. $("#check").change(function(){
  31.     if($(this).is(":checked")){
  32.       $(this).parent().parent().parent().addClass("selected");
  33.     }else{
  34.       $(this).parent().parent().parent().removeClass("selected");
  35.     }
  36. });
  37. </script>