checkedbox 컨트롤

· 10년 전 · 364

// [ 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년 전 조회 274
10년 전 조회 349
10년 전 조회 315
10년 전 조회 316
10년 전 조회 322
10년 전 조회 341
10년 전 조회 339
10년 전 조회 814
10년 전 조회 298
10년 전 조회 318
10년 전 조회 226
10년 전 조회 767
10년 전 조회 365
10년 전 조회 340
10년 전 조회 411
10년 전 조회 417
10년 전 조회 454
10년 전 조회 321
10년 전 조회 221
10년 전 조회 313
10년 전 조회 256
10년 전 조회 273
10년 전 조회 238
10년 전 조회 292
10년 전 조회 295