React onClick-通过事件传递参数

回答:

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

}

以上是 React onClick-通过事件传递参数 的全部内容, 来源链接: utcz.com/qa/428919.html

回到顶部