JavaScript/jQuery

【jQuery/Selector #60】:target Selector

1Q74 2023. 3. 15. 12:19

1. Description

jQuery(":target")
URL에 들어있는 #(해시 마크)에 매칭되는 Element를 찾는다.
예를 들어 URL이 https://example.com/#foo 이라면 $( "p:target" )은 <p id="foo">와 매칭된다.

2. Example

※ 코드를 작성해서 수차례 테스트를 진행하였으나, 제대로 된 결과가 출력되지 않아 이 부분은 생략합니다.

 


3. Reference

https://api.jquery.com/target-selector/

https://www.w3.org/TR/selectors-3/#target-pseudo