1.通过bind获取事件对象获得被点击的dom元素
<p onClick={this.getVal.bind(this)}>这是p标签</p>
getVal(event){ //获取被点击的dom对象 console.log(event.target); }
2.通过箭头函数获取被点击的dom元素(在箭头函数中传入e)
<p onClick={(e)=>{this.getValue(e)}}>这是p标签</p>
getValue=(event)=>{
console.log(event.target);
}