source: http://www.geekinterview.com/question_details/14132
question:
What is main diff between event delegation and event propagation
answer:
In JavaScript, event propagation refers to the fact that an event passed to an element, will get passed to the parent element afterwards if it wasnt handled by the child.
Event delegation refers to making use of this fact, by letting a parent element take care of events that take place in its children.
즉, 전파와 위임의 차이다. 전파란 퍼져 나가는 현상 자체를 일컫는 말이라면, 위임은 이벤트 처리가 현재의 노드에서 일어나지 않고 부모 노드로 넘기는 것을 의미. 즉 위임은 전파라는 특성을 이용하는 행위다.
question:
What is main diff between event delegation and event propagation
answer:
In JavaScript, event propagation refers to the fact that an event passed to an element, will get passed to the parent element afterwards if it wasnt handled by the child.
Event delegation refers to making use of this fact, by letting a parent element take care of events that take place in its children.
즉, 전파와 위임의 차이다. 전파란 퍼져 나가는 현상 자체를 일컫는 말이라면, 위임은 이벤트 처리가 현재의 노드에서 일어나지 않고 부모 노드로 넘기는 것을 의미. 즉 위임은 전파라는 특성을 이용하는 행위다.
댓글
댓글 쓰기