티스토리 뷰
Programming language/javascript
[Dom script] Element.matches() 이벤트 핸들러에서 자주 사용
hello-world 2022. 12. 7. 09:28728x90
반응형
Element.matches()
프론트엔드를 하다보면 이벤트 클릭을 많이 할 수 밖에 없다.
그럴때 여러 엘리먼트가 중첩되어 있는 경우 타겟을 골라내는 역활을 해주는게 바로 이 Element.matches() 이다.
https://developer.mozilla.org/en-US/docs/Web/API/Element/matches
Element 인터페이스의 matches() 메서드는 요소가 지정된 CSS 선택자에 의해 선택되는지 여부를 테스트합니다.
라고 한다.
아래는 예제
HTML
<div>
<button class="click-me">
<span class="text-large">Click Me!</span>
<br>
<span class="text-small">(limited time offer)</span>
</button>
</div>
Javascript
document.addEventListener('click', function (event) {
//.click-me buttons 클릭시에만 if 문 실행
if (event.target.matches('.click-me') ){
console.log('선택요소는 .click-me 선택자 엘리먼트');
};
});
728x90
반응형
'Programming language > javascript' 카테고리의 다른 글
[javascript] null, undefined, ’‘, 0 을 손쉽게 체크하기 (0) | 2023.04.27 |
---|---|
reduce 활용 (0) | 2023.03.04 |
forEach ( javascript 반복문 ) (0) | 2022.06.23 |
for of 구문 (0) | 2022.06.22 |
count rolling motion (0) | 2021.01.10 |
댓글
250x250
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- git
- 자바스크립트
- react
- RefreshToken
- vue-router
- 태그
- interceptors
- 앵귤러
- IntrinsicElements
- 리프래시토큰
- JsDoc
- react-router-dom
- svg icon font
- 반복문
- React.StrictMode
- 내장요소
- svg모션
- anime.js
- 코도바
- git checkout -b
- Intrinsic
- Angular
- CSS
- Aptana
- svg 폰트
- cordova
- for of 구문
- 아이콘 폰트 만들기
- icon font
- Vue3
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함