parent() Method | parents() Method |
It only traverses one level up in the DOM of the selected element. |
It traverses all levels up in the DOM of the selected element until the root i.e HTML tag. |
It returns only an element that is the direct parent. |
It returns all elements that are ancestors to the selected element |
간단히 정리하면
parent 메소드는 한 단계의 상위 요소를 반환하고 (부모요소)
parents 메소드는 모~든 상위 요소를 반환한다. (모든 조상요소)
https://www.geeksforgeeks.org/what-is-the-difference-between-parent-and-parents-methods-in-jquery/
'JavaScript' 카테고리의 다른 글
[JavaScript]Jquery +사용법 (0) | 2023.01.25 |
---|---|
[JavaScript]addEventListner (0) | 2023.01.25 |
[JavaScript/자바스크립트]클로저 (0) | 2023.01.02 |
[JavaScript/자바스크립트]프로토타입 (0) | 2023.01.02 |
[JavaScript/자바스크립트]this 키워드 (2) | 2023.01.02 |