page contents

如何在React中创建一个事件?

轩辕小不懂 发布于 2022-07-16 14:40
阅读 494
收藏 0
分类:WEB前端开发
3949
Nen
Nen
- 程序员

1class Display extends React.Component({    

 2    show(evt) {

 3        // code   

 4    },   

 5    render() {      

 6        // Render the div with an onClick prop (value is a function)        

 7        return (            

 8            <div onClick={this.show}>Click Me!</div>

 9        );    

10    }

11});

请先 登录 后评论