摘要:
使用柯里化: 1 state = { 2 username: "", 3 password: "", 4 }; 5 render() { 6 return ( 7 <div> 8 <form action="" onSubmit={this.handleSub}> 9 姓名: 10 {/*因为onc 阅读全文
摘要:
非受控组件:随用随取 1 render() { 2 return ( 3 <div> 4 <h1>非受控组件</h1> 5 <form action="" onSubmit={this.handleSub}> 6 姓名:<input ref={(e) => {this.username = e}} 阅读全文
摘要:
https://zh-hans.reactjs.org/docs/refs-and-the-dom.html 字符串形式ref 1 <input ref="myinput" type="text" placeholder="字符串形式的ref" /> 2 <button onClick={this. 阅读全文