JQuery Elements 개수 구하기
아래 div tag 중에서 .hide() 시킨 tag를 제외한 나머지 visible tag 개수 구하는 방법
예제 페이지 소스
<html>
<div class="hideOrShow">a</div>
<div class="hideOrShow">b</div>
<div class="hideOrShow">c</div>
<div class="hideOrShow">d</div>
</html>
JQuery 소스
$(".hideOrShow").index(0).hide();
$(".hideOrShow").index(1).hide();
var count = $(".hideOrShow:visible").length;
a, b는 hide 되었으므로 변수 count에는 2가 저장된다.
같은 결과를 위해 .size() 함수를 사용해도 된다.
$(".hideOrShow:visible").size();
'[개발] Programming > JQuery' 카테고리의 다른 글
JQuery serialize() 사용하는 이유 (0) | 2020.04.04 |
---|---|
JQuery, 서로 다른 태그를 하나의 click event에 바인딩 하기 (0) | 2018.10.29 |
[JQuery] 체크박스 개수와 체크된 체크박스 개수 구하는 방법 (0) | 2018.10.29 |
JQuery 클릭 이벤트 on("click") 과 click() 의 차이 (8) | 2018.10.29 |
JQuery addClass/removeClass 함수로 class 추가, 제거 하기 (0) | 2018.10.29 |
댓글