react通过事件对象获取被点击的dom元素

Posted on 2019-07-09 00:27  猫头唔食鱼  阅读(1494)  评论(0编辑  收藏  举报

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);
  }