프론트엔드 정복하기
Jquery의 $(this).index()를 ---> JS언어로 본문
1. 현재 클릭한 요소의 부모를 찾는다.
function getParentNode(element) {
return element.parentNode;
}
2. Array 객체의 메서드인 indexOf( )로 this가 몇번째 자식인지 찾는다.
function getElementIndex(element) {
return [].indexOf.call(element.parentNode.children, element);
}
참고 자료
'JavaScript' 카테고리의 다른 글
JS 자식선택자 (0) | 2020.07.07 |
---|---|
JS | String 관련 메소드 (0) | 2020.07.03 |
JS | window.onload 함수 (0) | 2020.06.29 |
JS로 css 변경하기 (0) | 2020.06.23 |
조건문 - Switch문 (0) | 2020.05.26 |