1. ホーム
  2. javascript

[解決済み] React onClick - パラメータでイベントを渡す

2022-05-09 18:22:14

質問

パラメータなし

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 . どうすれば入手できますか?

解決方法は?

これを試してみてください。

<button 
   onClick={(e) => {
      this.clickMe(e, someParameter);
   }}
>
Click Me!
</button>

そして、あなたの関数の中で

function clickMe(event, someParameter){
     //do with event
}