728x90
체크박스는 다음처럼 되어있다.
<input type="checkbox" class="form-check-input " name="check_product[]" id="check_product_숫자" value="숫자">
자바스크립트 사용시
document.querySelectorAll("input[name^='check_product[]']").forEach(function(item){
item.checked=true
});
제이쿼리 사용시
$('input:checkbox[name="check_product[]"]').each(function() {
$(this).prop('checked',true);
});
결과
모두 체크된다!!
'study > javascript' 카테고리의 다른 글
ajax 사용하기 (0) | 2021.09.13 |
---|---|
반복문 사용안하고 체크박스 모두 체크하기 (0) | 2021.09.13 |
jQuery,javascript로 data-target 데이터 얻기 (0) | 2021.09.13 |
jQuery 전체 체크박스 체크 (0) | 2021.09.13 |
daterangepicker 달력 사용하기 (0) | 2021.09.13 |
댓글