e.target과 e.currentTarget의 차이
tbody.addEventListener('contextmenu',function(){
console.log(e.currentTarget);//이벤트리스너를 단 대상
console.log(e.target);//클릭한 타겟 = td
});
Last updated
Was this helpful?
tbody.addEventListener('contextmenu',function(){
console.log(e.currentTarget);//이벤트리스너를 단 대상
console.log(e.target);//클릭한 타겟 = td
});
Last updated
Was this helpful?