jQuery 숨겨진 요소 확인하는 법
- 자아실현/프론트엔드
- 2020. 11. 7.
숨겨진(hidden 속성을 가지는) 모든 요소를 확인하기 위해서는 아래와 같은 코드를 사용합니다.
// Matches all elements that are hidden
$('element:hidden')
visible 속성을 가진 모든 요소는 아래와 같이 찾을 수 있습니다.
// Matches all elements that are visible
$('element:visible')
특정 요소에 hidden 혹은 visible 프로퍼티가 있는지 확인하는 법
위의 방법과는 달리, 특정 요소에 hidden 혹은 visible 프로퍼티를 지닌 속성이 있는지 확인하는 법입니다.
// Checks CSS content for display:[none|block], ignores visibility:[true|false]
$(element).is(":visible");
// The same works with hidden
$(element).is(":hidden");