Mi Lugarcito

Checkbox - 수정한 체크박스 값 디비에 Y/N 수정값으로 저장하기 본문

JavaScript

Checkbox - 수정한 체크박스 값 디비에 Y/N 수정값으로 저장하기

selene park 2021. 8. 25. 10:34
 <div class="panel-body" style="margin-bottom: 20px">
                        <div class="form-check">
                            <div class="list-group-item-checkbox toggleCheck">
                                @php
                                    $types = array(
                                        'is_month' => '월세',
                                        'is_rental' => '전세',
                                        'is_sale' => '매매',
                                    );
                                @endphp
                                @foreach($types as $key => $val)
                                    <label class="xe-label">
                                        <input type="checkbox" class="__xe_checkbox" name="{{$config->get('id')}}_{{$key}}" value="N" data-target="{{$key}}" />
                                        <span class="xe-input-helper"></span>
                                        <span class="xe-label-text">{{$val}}</span>
                                    </label>
                                @endforeach
                            </div>
                        </div>
                    </div>
 //체크박스
    $("input:checkbox").change(function(){
      if(this.checked){
        $(this).attr('value', 'Y');
      }else{
        $(this).attr('value', 'N');
      }
    });