摘要:
React事件 特点:1/react事件,绑定事件的命名,驼峰命名法。2/{},传入1个函数,而不是字符串 <button onClick={this.sendData}>传递helloworld给父元素</button> 事件对象:React返回的事件对象是代理的原生的事件对象,如果想要查看事件对 阅读全文
摘要:
父传子 class HelloWorld extends React.Component{ constructor(props) { super(props) this.state = { isActive:false } } render() { return ( <div> <button on 阅读全文