Class component event bindingimport 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 bindingimport 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')) SummarizeThis 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:
|
<<: 9 Practical CSS Properties Web Front-end Developers Must Know
>>: MySQL series tutorials for beginners
In HTML, common URLs are represented in a variety ...
Integrity constraints Integrity constraints are f...
JS implements a hover drop-down menu. This is a s...
What is high concurrency? The default Linux kerne...
This article shares the specific code of Vue to a...
Table of contents 1. Database Operation 1.1 Displ...
Table of contents 1. Effect Demonstration 2. Impl...
Page: base: <template> <div class="...
Table of contents 1 Node.js method of sending ema...
This article shares the specific code of js to ac...
Displaying and interpreting information about you...
Without further ado, I will post the code for you...
Separate the front and back ends and use nginx to...
Preface 1. The tools used in this article can be ...
There are some problems with the compressed versi...