checkedbox 컨트롤

· 10년 전 · 360

// [ 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년 전 조회 273
10년 전 조회 346
10년 전 조회 312
10년 전 조회 314
10년 전 조회 321
10년 전 조회 337
10년 전 조회 337
10년 전 조회 810
10년 전 조회 294
10년 전 조회 315
10년 전 조회 223
10년 전 조회 765
10년 전 조회 361
10년 전 조회 337
10년 전 조회 407
10년 전 조회 413
10년 전 조회 449
10년 전 조회 317
10년 전 조회 219
10년 전 조회 309
10년 전 조회 253
10년 전 조회 268
10년 전 조회 234
10년 전 조회 288
10년 전 조회 292