React event binding details

React event binding details
  • React event binding is similar to native DOM event binding
  • Syntax: on+event name={event handler} Example: onClick={()=>{}}
  • Note: React events use camelCase naming convention

Class component event binding

import React from 'react';
import ReactDOM from 'react-dom';
class App extends React.Component {
  handleClick() {
    console.log(111);
  }
  render() {
    return (<button onClick={this.handleClick} > Click me</button >)
  }
}
ReactDOM.render(<App />, document.getElementById('root'))

Function component event binding

import React from 'react';
import ReactDOM from 'react-dom';
function App() {
  function handleClick() {
    console.log(111);
  }
  // There is no this in the function component, so just write the function name without adding this.
  return (<button onClick={handleClick}>Click me</button>)
}
ReactDOM.render(<App />, document.getElementById('root'))

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of React event binding
  • The implementation of event binding this in React points to three methods
  • Detailed explanation of four ways to bind this to events in React
  • Comparison of several methods of event binding in React learning

<<:  9 Practical CSS Properties Web Front-end Developers Must Know

>>:  MySQL series tutorials for beginners

Recommend

URL representation in HTML web pages

In HTML, common URLs are represented in a variety ...

Analysis of SQL integrity constraint statements in database

Integrity constraints Integrity constraints are f...

Native JS to implement hover drop-down menu

JS implements a hover drop-down menu. This is a s...

A brief discussion on Nginx10m+ high concurrency kernel optimization

What is high concurrency? The default Linux kerne...

Vue implements scrollable pop-up window effect

This article shares the specific code of Vue to a...

MySQL database operations and data types

Table of contents 1. Database Operation 1.1 Displ...

Example code of layim integrating right-click menu in JavaScript

Table of contents 1. Effect Demonstration 2. Impl...

Details of using vue activated in child components

Page: base: <template> <div class="...

Node.js sends emails based on STMP protocol and EWS protocol

Table of contents 1 Node.js method of sending ema...

Pure js to achieve the effect of carousel

This article shares the specific code of js to ac...

How to decrypt Linux version information

Displaying and interpreting information about you...

Dynamically add tables in HTML_PowerNode Java Academy

Without further ado, I will post the code for you...

Nginx's practical method for solving cross-domain problems

Separate the front and back ends and use nginx to...

A method of hiding processes under Linux and the pitfalls encountered

Preface 1. The tools used in this article can be ...

MySQL compressed package version zip installation configuration method

There are some problems with the compressed versi...