天天看點

[ReactJS] DOM Event Listeners in a React Component

React doesn't provide the listener to listen the DOM event. But we can do it in React life cycle:

So when the compoment did mount, we add listeners to the dom event.

And remember to remove the dom listener when the compoment unmount.

繼續閱讀