codeit 으로 공부한 내용을 정리했습니다.
중급 한 개 토픽이 끝이 났는데.. 찝찝하다.;;
문제를 정답 안 보고는 풀 수가 없었다. 아놔...
중급 과정은 한 번 더 다시 들어야겠다.
const flagBlue = document.querySelector('.flag-blue');
const flagWhite = document.querySelector('.flag-white');
function flagUp(e) {
// 여기에 코드를 작성해 주세요.
if (e.button === 0){ // 0: 왼쪽 버튼
flagBlue.classList.add('up');
// e.target.classList.add('up');
} else if (e.button === 2){ // 2: 오른쪽 버튼
flagWhite.classList.add('up');
}
document.addEventListener('mousedown', flagUp);
MouseEvent.type
아래 이벤트 타입은 버블링 현상이 발생하지 않는다.
가장 큰 차이점은
mouseover/mouseout 의 이벤트 핸들러가 자식 요소까지 영향을 끼친다.(버블링 발생)
mouseenter/mouseleave 의 이벤트 핸들러가 자식 요소에는 영향이 없다.(버블링 x)
const box2 = document.querySelecotr('#box2');
function onMouse(){
console.log('mouse is moving');
}
box1.addEventListener('mousemove', onMouseMove);
function onMouseMove(e) {
console.log(`client: (${e.clientX}, ${e.clientY})`);
console.log(`page: (${e.pageX}, ${e.pageY})`);
console.log(`offset: (${e.offsetX}, ${e.offsetY})`);
console.log('------------------------------------');
}
box2.addEventListener('mouseover', printEventData);
원래 textarea 태그에 커서를 두고 enter 키 버튼을 누르면 줄바꿈이 됩니다. 이건 브라우저의 기본 동작이라고 한다.(아니 이런 부분을 처음 공부하는 사람이 어떻게 아냐고)
input 태그는 다양한 타입
포커스 이벤트
입력 이벤트
자바스크립트로 HTML 태그의 비표준 속성을 활용할 때 HTML 태그에 data-* 형태로 작성하면 DOM의 dataset 프로퍼티를 활용하여 접근할 수 있다.
// example 예제
// 비표준 속성 태그 값이 data-title 인 경우
function func(e){
if(e.target.dataset.title){
console.log('비표준 속성 태그');
}
}