The **closest()**
method traverses the Element
and its parents (heading toward the document root) until it finds a node that matches the provided selector string. Will return itself or the matching ancestor. If no such element exists, it returns null
.
document root를 향해 나아가면서 현재 기준 Element에서 ancestor만을 거쳐가며 Input(Selector)와 일치하는 elem를 반환한다.
셀렉터와 일치하는 요소가 없다면 null을 반환한다.