Languages
[Edit]
EN

React - add onClick to div (class component)

3 points
Created by:
Frida-Timms
607

In this article, we would like to show you how to handle a mouse click event on div element in React.

Below example uses:

  • the component's state to store color value,
  • setState() method to update the color,
  • onClick property to handle the event.

Practical example:

// ONLINE-RUNNER:browser;

// Note: Uncomment import lines during working with JSX Compiler.
// import React from 'react';
// import ReactDOM from 'react-dom';

class App extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      color: 'yellow'
    };
  }
  handleClick = () => {
    this.setState({ color: this.state.color === 'yellow' ? 'orange' : 'yellow' });
  };
  render = () => {
    return (
      <div style={{ background: this.state.color }} onClick={this.handleClick}>
        Click me to change my color.
      </div>
    );
  };
}

const root = document.querySelector('#root');
ReactDOM.render(<App />, root);

Note:

Go to this article to see functional component example.

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

ReactJS

React - add onClick to div (class component)
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join