[21] 04/26 자바스크립트 수업

Noh Sinyoung·2023년 4월 26일
0

function ( ) { } 원본

( ) => { } 줄인것(화살표 함수)

input 이벤트

		let 인풋 = document.querySelector("input")
        인풋.addEventListener("input", (event) => {
            console.log(event)
            console.log(event.target)
        })

입력받을 때마다 이벤트가 발생함

change 이벤트

		let 셀렉 = document.querySelector("select")
        셀렉.addEventListener("change", (event) => {
            console.log(event)
        })

지정된 변수의 값이 바뀔때마다 이벤트가 발생함

0개의 댓글