Mi Lugarcito
Checkbox - 수정한 체크박스 값 디비에 Y/N 수정값으로 저장하기 본문
<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');
}
});
'JavaScript' 카테고리의 다른 글
CheckBox - 체크박스 선택시 div 나타나게 하기 (0) | 2021.09.05 |
---|---|
Radio & Input - 라디오버튼 선택시 텍스트박스 활성화/비활성화 (0) | 2021.09.05 |
Radio - 버튼 클릭시 해당 div만 show/non-show 해주기 (0) | 2021.08.25 |
JS - this (Arrow function expression and Normal function) (0) | 2021.04.17 |
DOM? Document Object Model (0) | 2021.04.10 |