jQuery로 Checkbox를 선택하는 방법입니다. *^^*
다른 좋은 방법도 있지만 간단히 필터로 선택해 보았습니다.
▣ checkbox.html
<!DOCTYPE html> <html> <head> <style> body { font-size: 12px; } </style> <script src="http://code.jquery.com/jquery-latest.min.js"></script> </head>
<body> <form> <input type="checkbox" name="test" checked/>1 <input type="checkbox" name="test" checked/>2 <input type="checkbox" />3 <input type="checkbox" name="test" checked/>4 <input type="checkbox" />5 <input type="hidden" /> </form> <div id="count"></div> <div id="check"></div>
<script> var input = $("form input:checkbox"); $("#count").text("Checkbox Count = " + input.length); $("#check").text("Checkbox Count [checked] = " + $('input:checkbox:checked').length); </script>
</body> </html>
|
▣ 페이지 로딩
[출처] [jQuery] jQuery Checkbox 선택|작성자 주한길
'jQuery' 카테고리의 다른 글
[jQuery] jQuery 체크박스 체크여부 및 일괄선택/해제 예제 (0) | 2015.07.09 |
---|---|
[jQuery] jQuery 2.0 정식 릴리즈 (0) | 2015.07.09 |
[jQuery] jQuery Checkbox 기능정리 (0) | 2015.07.09 |
[jQuery] jQuery Checkbox 와 Div 사용하기 (0) | 2015.07.09 |
[jQuery] jQuery 시작하기 - Aptana 편집기 (0) | 2015.07.09 |