我有onClick={this.didSelectReview.bind(this,review)}
的元素。
在didSelectReview
- 函数中,我想通过调用来停止click事件。 e.stopPropagation()
。但是如何才能获得点击事件e
?
答案 0 :(得分:0)
.bind()
的作用是它在调用中预先设置默认参数。所以你的函数中会有原始参数:
this.didSelectReview = function(review,clickevent){
clickevent.stopPropagation();
}
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind