Answer the question
In order to leave comments, you need to log in
React.js How to get the component associated with an element in an event handler?
class Table extends Component {
constructor(props) {
super(props);
this.handleClick = handleClick.bind(this);
}
handleClick(e) {
console.log(e.target);
}
render() {
return(<div onClick={this.handleClick}></div>);
}
}
Answer the question
In order to leave comments, you need to log in
I hope the meaning is clear.
class Table extends Component {
constructor(props) {
super(props);
this.handleClick = handleClick.bind(this);
}
handleClick(id) {
console.log(id);
}
render() {
return (
<div>
{items.map(item => <Item key={item.id} onClick={() => this.handleClick(item.id)} />)}
</div>);
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question