码迷,mamicode.com
首页 > 其他好文 > 详细

react篇章-事件处理

时间:2019-03-02 18:41:20      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:state   inf   type   xtend   struct   cli   回调函数   onclick   col   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>React 实例</title>
<script src="https://cdn.staticfile.org/react/16.4.0/umd/react.development.js"></script>
<script src="https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js"></script>
<script src="https://cdn.staticfile.org/babel-standalone/6.26.0/babel.min.js"></script>
</head>
<body>

<div id="example"></div>
<script type="text/babel">
class Toggle extends React.Component {
  constructor(props) {
    super(props);
    this.state = {isToggleOn: true};

    // 这边绑定是必要的,这样 `this` 才能在回调函数中使用
    this.handleClick = this.handleClick.bind(this);
  }

  handleClick() {
    this.setState(prevState => ({
      isToggleOn: !prevState.isToggleOn
    }));
  }

  render() {
    return (
      <button onClick={this.handleClick}>
        {this.state.isToggleOn ? ON : 999}
      </button>
    );
  }
}

ReactDOM.render(
  <Toggle />,
  document.getElementById(example)
);
</script>

</body>
</html>

技术图片

技术图片

 

react篇章-事件处理

标签:state   inf   type   xtend   struct   cli   回调函数   onclick   col   

原文地址:https://www.cnblogs.com/zzzzw/p/10462166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!