美文网首页
react事件

react事件

作者: 夏夏夏夏顿天 | 来源:发表于2018-09-27 10:22 被阅读8次

    事件,我们都知道,这个很重要,说不定就要和使用者进行交互

    如何添加事件

    直接在jsx上面添加,利用on*, 例如:onClick,驼峰式

    return (
          <p onClick={this.handleClick.bind(this)}>
              You {text} this. Click to toggle.
          </p>
        );
    

    参考:https://hulufei.gitbooks.io/react-tutorial/content/events.html

    React map生成元素添加点击事件绑定this

    我们直接在map上面添加事件是会保错的,解决方案,可以将map结果push进去。或者重新绑定this

    {
      waveProvinceArr.map(function(waveProvinceItem){
        return <button type="button" onClick={this.provinceChange.bind(this, waveProvinceItem)}>{waveProvinceItem}</button>
      }.bind(this))
    }
    
    

    参考:https://www.jianshu.com/p/c130e7e791b6

    相关文章

      网友评论

          本文标题:react事件

          本文链接:https://www.haomeiwen.com/subject/ixasoftx.html