COMING SOON 🚀

checkedbox 컨트롤

· 10년 전 · 352

// [ checkedbox 컨트롤 ] --------------------------------------------------------------///
1. 개수 구하기
$("input[name=chk1]:checkbox:checked").length
 
☆☆☆  php에서 배열사용시  ☆☆☆
$("input[name='chk1[]']:checked").length
 
 
2. 체크여부 확인
$("#check_all").is(':checked')
 
 
3.  chk1 개수만큼 돌면서 실행한다
 
  $("input[name='item[]']:checkbox:checked").each(function(){items.push($(this).val());}); 
 
  var items_str = items.join(',');
 
  또는 var items_str = items.toString();
 
  또는 var items_str = $("input[name='item[]']:checkbox:checked").map(function () {return this.value;}).get();
 
  
4. disabled 하기
 
$("input[name=chk1]").attr('disabled', 'true');

|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
10년 전 조회 265
10년 전 조회 342
10년 전 조회 307
10년 전 조회 310
10년 전 조회 312
10년 전 조회 332
10년 전 조회 330
10년 전 조회 805
10년 전 조회 285
10년 전 조회 309
10년 전 조회 214
10년 전 조회 756
10년 전 조회 353
10년 전 조회 332
10년 전 조회 396
10년 전 조회 405
10년 전 조회 437
10년 전 조회 312
10년 전 조회 214
10년 전 조회 304
10년 전 조회 243
10년 전 조회 263
10년 전 조회 227
10년 전 조회 279
10년 전 조회 286