2021
04-27
04-27
React获取input值并提交的2种方法实例
方法一 利用DOM提供的Event对象的target事件属性取值并提交importReactfrom'react';classInputDemoextendsReact.Component{state={InputValue:"",//输入框输入值};handleGetInputValue=(event)=>{this.setState({InputValue:event.target.value,})};handlePost=()=>{const{InputValue}=this.state;console.log(InputValue,'------InputValue');//在此做...
继续阅读 >