React onClick - 使用参数传递事件
2022-08-30 02:37:00
无参数
function clickMe(e){
//e is the event
}
<button onClick={this.clickMe}></button>
带参数
function clickMe(parameter){
//how to get the "e" ?
}
<button onClick={() => this.clickMe(someparameter)}></button>
我想得到 .我怎样才能得到它?event