728x90 반응형 es61 자바스크립트 js 이벤트 //인라인 이벤트 모델 확인하기function test1(button){ // console.log(button) button.style.backgroundColor="red"; button.style.color= "white";}//고전 이벤트 모델 확인하기console.log(document.getElementById("test2-1"));document.getElementById("test2-1").onclick = function(){ //익명 함수(이벤트 핸들러에 많이 사용함) alert("고전 이벤트 모델 확인");}//이벤트 제거document.getElementById("test2-2").onclick = function(){ //test2-1 이벤트 제거 .. 2024. 6. 14. 이전 1 다음 728x90 반응형