2026/4/17 14:38:44
网站建设
项目流程
企业网站特点,中国住房和城乡建设部网站一级建造师网,蛇口网站建设,it之家网站源码React 表单与事件
本章节我们将讨论如何在 React 中使用表单。HTML 表单元素与 React 中的其他 DOM 元素有所不同,因为表单元素生来就保留一些内部状态。在 HTML 当中#xff0c;像 input, textarea, 和 select 这类表单元素会维持自身状态#xff0…React 表单与事件本章节我们将讨论如何在 React 中使用表单。HTML 表单元素与 React 中的其他 DOM 元素有所不同,因为表单元素生来就保留一些内部状态。在 HTML 当中像 input, textarea, 和 select 这类表单元素会维持自身状态并根据用户输入进行更新。但在React中可变的状态通常保存在组件的状态属性中并且只能用 setState() 方法进行更新。一个简单的实例在实例中我们设置了输入框 input 值 value {this.state.data}。在输入框值发生变化时我们可以更新 state。我们可以使用 onChange 事件来监听 input 的变化并修改 state。React 实例class HelloMessage extends React.Component {constructor(props) {super(props);this.state {value: Hello Runoob!};this.handleChange this.handleChange.bind(this);}handleChange(event) {this.setState({value: event.target.value});}render() {var value this.state.value;return divinput typetext value{value} onChange{this.handleChange} /h4{value}/h4/div;}}const root ReactDOM.createRoot(document.getElementById(root));root.render(HelloMessage /);尝试一下 »上面的代码将渲染出一个值为 Hello Runoob! 的 input 元素并通过 onChange 事件响应更新用户输入的值。实例 2在以下实例中我们将为大家演示如何在子组件上使用表单。 onChange 方法将触发 state 的更新并将更新的值传递到子组件的输入框的 value 上来重新渲染界面。你需要在父组件通过创建事件句柄 (handleChange) 并作为 prop (updateStateProp) 传递到你的子组件上。React 实例class Content extends React.Component {render() {return (divinput typetext value{this.props.myDataProp} onChange{this.props.updateStateProp} /h4{this.props.myDataProp}/h4/div);}}class HelloMessage extends React.Component {constructor(props) {super(props);this.state { value: Hello Runoob! };this.handleChange this.handleChange.bind(this);}handleChange(event) {this.setState({ value: event.target.value });}render() {var value this.state.value;return (divContent myDataProp{value} updateStateProp{this.handleChange} //div);}}const root ReactDOM.createRoot(document.getElementById(root));root.render(HelloMessage /);尝试一下 »Select 下拉菜单在 React 中不使用 selected 属性而在根 select 标签上用 value 属性来表示选中项。React 实例class FlavorForm extends React.Component {constructor(props) {super(props);this.state {value: coconut};this.handleChange this.handleChange.bind(this);this.handleSubmit this.handleSubmit.bind(this);}handleChange(event) {this.setState({value: event.target.value});}handleSubmit(event) {alert(Your favorite flavor is: this.state.value);event.preventDefault();}render() {return (form onSubmit{this.handleSubmit}label选择您最喜欢的网站select value{this.state.value} onChange{this.handleChange}option valueggGoogle/optionoption valuernRunoob/optionoption valuetbTaobao/optionoption valuefbFacebook/option/select/labelinput typesubmit value提交 //form);}}const root ReactDOM.createRoot(document.getElementById(root));root.render(FlavorForm /);尝试一下 »多个表单当你有处理多个 input 元素时你可以通过给每个元素添加一个 name 属性来让处理函数根据 event.target.name 的值来选择做什么。React 实例class Reservation extends React.Component {constructor(props) {super(props);this.state {isGoing: true,numberOfGuests: 2};this.handleInputChange this.handleInputChange.bind(this);}handleInputChange(event) {const target event.target;const value target.type checkbox ? target.checked : target.value;const name target.name;this.setState({[name]: value});}render() {return (formlabel是否离开:inputnameisGoingtypecheckboxchecked{this.state.isGoing}onChange{this.handleInputChange} //labelbr /label访客数:inputnamenumberOfGueststypenumbervalue{this.state.numberOfGuests}onChange{this.handleInputChange} //label/form);}}尝试一下 »React 事件以下实例演示通过 onClick 事件来修改数据React 实例class HelloMessage extends React.Component {constructor(props) {super(props);this.state {value: Hello Runoob!};this.handleChange this.handleChange.bind(this);}handleChange(event) {this.setState({value: 菜鸟教程})}render() {var value this.state.value;return divbutton onClick{this.handleChange}点我/buttonh4{value}/h4/div;}}const root ReactDOM.createRoot(document.getElementById(root));root.render(HelloMessage /);尝试一下 »当你需要从子组件中更新父组件的 state 时你需要在父组件通过创建事件句柄 (handleChange) 并作为 prop (updateStateProp) 传递到你的子组件上。实例如下React 实例class Content extends React.Component {render() {return divbutton onClick {this.props.updateStateProp}点我/buttonh4{this.props.myDataProp}/h4/div}}class HelloMessage extends React.Component {constructor(props) {super(props);this.state {value: Hello Runoob!};this.handleChange this.handleChange.bind(this);}handleChange(event) {this.setState({value: 菜鸟教程})}render() {var value this.state.value;return divContent myDataProp {value}updateStateProp {this.handleChange}/Content/div;}}const root ReactDOM.createRoot(document.getElementById(root));root.render(HelloMessage /);尝试一下 »React AJAXReact Refs1 篇笔记 写笔记杨笑117***1030qq.com51父组件和子组件都用表单:class HelloMessageChild extends React.Component {render(){return divinput typetext value{this.props.myDataProp} onChange{this.props.updateStateProp} /h4子组件显示{this.props.myDataProp}/h4/div;}}class HelloMessage extends React.Component {constructor(props) {super(props);this.state {value: 父组件,value1:子组件};this.handleChange this.handleChange.bind(this);this.handleChange1 this.handleChange1.bind(this);}handleChange(event) {this.setState({value: event.target.value});}handleChange1(event) {this.setState({value1: event.target.value});}render() {var value this.state.value;var value1 this.state.value1;return divtabletbodytrtdinput typetext value{value} onChange{this.handleChange} /h4父组件显示{value}/h4/tdtdHelloMessageChild myDataProp {value1} updateStateProp {this.handleChange1} //td/tr/tbody/table/div;}}ReactDOM.render(HelloMessage /,document.getElementById(formexmple));https://avg.163.com/topic/detail/8769951https://avg.163.com/topic/detail/8770129https://avg.163.com/topic/detail/8769718https://avg.163.com/topic/detail/8769885https://avg.163.com/topic/detail/8770022https://avg.163.com/topic/detail/8770137https://avg.163.com/topic/detail/8769683https://avg.163.com/topic/detail/8769760https://avg.163.com/topic/detail/8769990https://avg.163.com/topic/detail/8769613https://avg.163.com/topic/detail/8770175https://avg.163.com/topic/detail/8769888https://avg.163.com/topic/detail/8769931https://avg.163.com/topic/detail/8770132https://avg.163.com/topic/detail/8769866https://avg.163.com/topic/detail/8769965https://avg.163.com/topic/detail/8770159https://avg.163.com/topic/detail/8769693https://avg.163.com/topic/detail/8769894https://avg.163.com/topic/detail/8770112https://avg.163.com/topic/detail/8769704https://avg.163.com/topic/detail/8769831https://avg.163.com/topic/detail/8769959https://avg.163.com/topic/detail/8770119https://avg.163.com/topic/detail/8769688https://avg.163.com/topic/detail/8769815https://avg.163.com/topic/detail/8769987https://avg.163.com/topic/detail/8770150https://avg.163.com/topic/detail/8769666https://avg.163.com/topic/detail/8769769https://avg.163.com/topic/detail/8770005https://avg.163.com/topic/detail/8770145https://avg.163.com/topic/detail/8769676https://avg.163.com/topic/detail/8769772https://avg.163.com/topic/detail/8769983https://avg.163.com/topic/detail/8770169https://avg.163.com/topic/detail/8769670https://avg.163.com/topic/detail/8769804https://avg.163.com/topic/detail/8769946https://avg.163.com/topic/detail/8770160https://avg.163.com/topic/detail/8769714https://avg.163.com/topic/detail/8769761https://avg.163.com/topic/detail/8770016https://avg.163.com/topic/detail/8770144https://avg.163.com/topic/detail/8769701https://avg.163.com/topic/detail/8769773https://avg.163.com/topic/detail/8769935https://avg.163.com/topic/detail/8770130https://avg.163.com/topic/detail/8769663https://avg.163.com/topic/detail/8769756https://avg.163.com/topic/detail/8769953https://avg.163.com/topic/detail/8770165https://avg.163.com/topic/detail/8769708https://avg.163.com/topic/detail/8769765https://avg.163.com/topic/detail/8769939https://avg.163.com/topic/detail/8770096https://avg.163.com/topic/detail/8769644https://avg.163.com/topic/detail/8769778https://avg.163.com/topic/detail/8770040https://avg.163.com/topic/detail/8770173https://avg.163.com/topic/detail/8769648https://avg.163.com/topic/detail/8769838https://avg.163.com/topic/detail/8770010https://avg.163.com/topic/detail/8770148https://avg.163.com/topic/detail/8769627https://avg.163.com/topic/detail/8769821https://avg.163.com/topic/detail/8769911https://avg.163.com/topic/detail/8770133https://avg.163.com/topic/detail/8769635https://avg.163.com/topic/detail/8769784https://avg.163.com/topic/detail/8769994https://avg.163.com/topic/detail/8770118https://avg.163.com/topic/detail/8769659https://avg.163.com/topic/detail/8769897https://avg.163.com/topic/detail/8769944https://avg.163.com/topic/detail/8770153https://avg.163.com/topic/detail/8769640https://avg.163.com/topic/detail/8769781https://avg.163.com/topic/detail/8769971https://avg.163.com/topic/detail/8770186https://avg.163.com/topic/detail/8769654https://avg.163.com/topic/detail/8769870https://avg.163.com/topic/detail/8769948https://avg.163.com/topic/detail/8770139https://avg.163.com/topic/detail/8769622https://avg.163.com/topic/detail/8769791https://avg.163.com/topic/detail/8770028https://avg.163.com/topic/detail/8770101https://avg.163.com/topic/detail/8769614https://avg.163.com/topic/detail/8769881https://avg.163.com/topic/detail/8769964https://avg.163.com/topic/detail/8770122https://avg.163.com/topic/detail/8769620https://avg.163.com/topic/detail/8769837https://avg.163.com/topic/detail/8769958https://avg.163.com/topic/detail/8770117https://avg.163.com/topic/detail/8769615https://avg.163.com/topic/detail/8769876https://avg.163.com/topic/detail/8769631https://avg.163.com/topic/detail/8769932https://avg.163.com/topic/detail/8769860https://avg.163.com/topic/detail/8770124https://avg.163.com/topic/detail/8769925https://avg.163.com/topic/detail/8770103https://avg.163.com/topic/detail/8769609https://avg.163.com/topic/detail/8769823https://avg.163.com/topic/detail/8769916https://avg.163.com/topic/detail/8770140https://avg.163.com/topic/detail/8769603https://avg.163.com/topic/detail/8769776https://avg.163.com/topic/detail/8769998https://avg.163.com/topic/detail/8770109https://avg.163.com/topic/detail/8769596https://avg.163.com/topic/detail/8769796https://avg.163.com/topic/detail/8769972https://avg.163.com/topic/detail/8770157https://avg.163.com/topic/detail/8770416https://avg.163.com/topic/detail/8769617https://avg.163.com/topic/detail/8769800https://avg.163.com/topic/detail/8769624https://avg.163.com/topic/detail/8769992https://avg.163.com/topic/detail/8769832https://avg.163.com/topic/detail/8770142https://avg.163.com/topic/detail/8769955https://avg.163.com/topic/detail/8770412https://avg.163.com/topic/detail/8770135https://avg.163.com/topic/detail/8770428https://avg.163.com/topic/detail/8769612https://avg.163.com/topic/detail/8769810https://avg.163.com/topic/detail/8769984https://avg.163.com/topic/detail/8770095https://avg.163.com/topic/detail/8770424https://avg.163.com/topic/detail/8769606https://avg.163.com/topic/detail/8769764https://avg.163.com/topic/detail/8769967https://avg.163.com/topic/detail/8769600https://avg.163.com/topic/detail/8770099https://avg.163.com/topic/detail/8769805https://avg.163.com/topic/detail/8770414https://avg.163.com/topic/detail/8769607https://avg.163.com/topic/detail/8769988https://avg.163.com/topic/detail/8769787https://avg.163.com/topic/detail/8770166https://avg.163.com/topic/detail/8769978https://avg.163.com/topic/detail/8770409https://avg.163.com/topic/detail/8770108https://avg.163.com/topic/detail/8770382https://avg.163.com/topic/detail/8769604https://avg.163.com/topic/detail/8769789https://avg.163.com/topic/detail/8769937https://avg.163.com/topic/detail/8770105https://avg.163.com/topic/detail/8770398https://avg.163.com/topic/detail/8769601https://avg.163.com/topic/detail/8769808https://avg.163.com/topic/detail/8770020https://avg.163.com/topic/detail/8770111https://avg.163.com/topic/detail/8769611https://avg.163.com/topic/detail/8770405https://avg.163.com/topic/detail/8769780https://avg.163.com/topic/detail/8770036https://avg.163.com/topic/detail/8770094https://avg.163.com/topic/detail/8769608https://avg.163.com/topic/detail/8770392https://avg.163.com/topic/detail/8769801https://avg.163.com/topic/detail/8770026https://avg.163.com/topic/detail/8770195https://avg.163.com/topic/detail/8769619https://avg.163.com/topic/detail/8770400https://avg.163.com/topic/detail/8769753https://avg.163.com/topic/detail/8769919https://avg.163.com/topic/detail/8770190https://avg.163.com/topic/detail/8770389https://avg.163.com/topic/detail/8769598https://avg.163.com/topic/detail/8769844https://avg.163.com/topic/detail/8769922https://avg.163.com/topic/detail/8769593https://avg.163.com/topic/detail/8770128https://avg.163.com/topic/detail/8769767https://avg.163.com/topic/detail/8770386https://avg.163.com/topic/detail/8769934https://avg.163.com/topic/detail/8770115https://avg.163.com/topic/detail/8770395https://avg.163.com/topic/detail/8769595https://avg.163.com/topic/detail/8769795https://avg.163.com/topic/detail/8769942https://avg.163.com/topic/detail/8770224https://avg.163.com/topic/detail/8770373https://avg.163.com/topic/detail/8769610https://avg.163.com/topic/detail/8769771https://avg.163.com/topic/detail/8769961https://avg.163.com/topic/detail/8770091https://avg.163.com/topic/detail/8770378https://avg.163.com/topic/detail/8769591https://avg.163.com/topic/detail/8769759https://avg.163.com/topic/detail/8770048https://avg.163.com/topic/detail/8770121https://avg.163.com/topic/detail/8769583https://avg.163.com/topic/detail/8770361https://avg.163.com/topic/detail/8769790https://avg.163.com/topic/detail/8769941https://avg.163.com/topic/detail/8770228https://avg.163.com/topic/detail/8770402https://avg.163.com/topic/detail/8769605https://avg.163.com/topic/detail/8769599https://avg.163.com/topic/detail/8769793https://avg.163.com/topic/detail/8769855https://avg.163.com/topic/detail/8769996https://avg.163.com/topic/detail/8769949https://avg.163.com/topic/detail/8770205https://avg.163.com/topic/detail/8770219https://avg.163.com/topic/detail/8770315https://avg.163.com/topic/detail/8770420https://avg.163.com/topic/detail/8769602https://avg.163.com/topic/detail/8769744https://avg.163.com/topic/detail/8769954https://avg.163.com/topic/detail/8770210https://avg.163.com/topic/detail/8770426https://avg.163.com/topic/detail/8769594https://avg.163.com/topic/detail/8769755https://avg.163.com/topic/detail/8769947https://avg.163.com/topic/detail/8769597https://avg.163.com/topic/detail/8770170https://avg.163.com/topic/detail/8769785https://avg.163.com/topic/detail/8770407https://avg.163.com/topic/detail/8769980https://avg.163.com/topic/detail/8770214https://avg.163.com/topic/detail/8769590https://avg.163.com/topic/detail/8770282https://avg.163.com/topic/detail/8769750https://avg.163.com/topic/detail/8769926https://avg.163.com/topic/detail/8769588https://avg.163.com/topic/detail/8770178https://avg.163.com/topic/detail/8769814https://avg.163.com/topic/detail/8770321https://avg.163.com/topic/detail/8769966https://avg.163.com/topic/detail/8770085https://avg.163.com/topic/detail/8770349https://avg.163.com/topic/detail/8769586https://avg.163.com/topic/detail/8769777https://avg.163.com/topic/detail/8770001https://avg.163.com/topic/detail/8770134https://avg.163.com/topic/detail/8770304https://avg.163.com/topic/detail/8769584https://avg.163.com/topic/detail/8769734https://avg.163.com/topic/detail/8770031https://avg.163.com/topic/detail/8770127https://avg.163.com/topic/detail/8770309https://avg.163.com/topic/detail/8769580https://avg.163.com/topic/detail/8769733https://avg.163.com/topic/detail/8770014https://avg.163.com/topic/detail/8770189https://avg.163.com/topic/detail/8770264https://avg.163.com/topic/detail/8769749https://avg.163.com/topic/detail/8769974https://avg.163.com/topic/detail/8770114https://avg.163.com/topic/detail/8770280https://avg.163.com/topic/detail/8769570https://avg.163.com/topic/detail/8769742https://avg.163.com/topic/detail/8770003https://avg.163.com/topic/detail/8769573https://avg.163.com/topic/detail/8770120https://avg.163.com/topic/detail/8769752https://avg.163.com/topic/detail/8770000https://avg.163.com/topic/detail/8770268https://avg.163.com/topic/detail/8769582https://avg.163.com/topic/detail/8769775https://avg.163.com/topic/detail/8769930https://avg.163.com/topic/detail/8770292https://avg.163.com/topic/detail/8769569https://avg.163.com/topic/detail/8769747https://avg.163.com/topic/detail/8769960https://avg.163.com/topic/detail/8770289https://avg.163.com/topic/detail/8769579https://avg.163.com/topic/detail/8769757https://avg.163.com/topic/detail/8770008https://avg.163.com/topic/detail/8770200https://avg.163.com/topic/detail/8770367https://avg.163.com/topic/detail/8769575https://avg.163.com/topic/detail/8769737https://avg.163.com/topic/detail/8769904https://avg.163.com/topic/detail/8770276https://avg.163.com/topic/detail/8769592https://avg.163.com/topic/detail/8769918https://avg.163.com/topic/detail/8769589https://avg.163.com/topic/detail/8770299https://avg.163.com/topic/detail/8769743https://avg.163.com/topic/detail/8769924https://avg.163.com/topic/detail/8770104https://avg.163.com/topic/detail/8770295https://avg.163.com/topic/detail/8769587https://avg.163.com/topic/detail/8769740https://avg.163.com/topic/detail/8769915https://avg.163.com/topic/detail/8770184https://avg.163.com/topic/detail/8770278https://avg.163.com/topic/detail/8769585https://avg.163.com/topic/detail/8769827https://avg.163.com/topic/detail/8769936https://avg.163.com/topic/detail/8770285https://avg.163.com/topic/detail/8769581https://avg.163.com/topic/detail/8769768https://avg.163.com/topic/detail/8769905https://avg.163.com/topic/detail/8770284https://avg.163.com/topic/detail/8769576https://avg.163.com/topic/detail/8769736https://avg.163.com/topic/detail/8769952https://avg.163.com/topic/detail/8770171https://avg.163.com/topic/detail/8770337https://avg.163.com/topic/detail/8769577https://avg.163.com/topic/detail/8769763https://avg.163.com/topic/detail/8769907https://avg.163.com/topic/detail/8770354https://avg.163.com/topic/detail/8769572https://avg.163.com/topic/detail/8769738https://avg.163.com/topic/detail/8769956https://avg.163.com/topic/detail/8770341https://avg.163.com/topic/detail/8769567https://avg.163.com/topic/detail/8769751https://avg.163.com/topic/detail/8769929https://avg.163.com/topic/detail/8770332https://avg.163.com/topic/detail/8769564https://avg.163.com/topic/detail/8769739https://avg.163.com/topic/detail/8769962https://avg.163.com/topic/detail/8770279https://avg.163.com/topic/detail/8769578https://avg.163.com/topic/detail/8769731https://avg.163.com/topic/detail/8769927https://avg.163.com/topic/detail/8770327https://avg.163.com/topic/detail/8769571https://avg.163.com/topic/detail/8769782https://avg.163.com/topic/detail/8769917https://avg.163.com/topic/detail/8770136https://avg.163.com/topic/detail/8770281https://avg.163.com/topic/detail/8769563https://avg.163.com/topic/detail/8769921https://avg.163.com/topic/detail/8770273https://avg.163.com/topic/detail/8769561https://avg.163.com/topic/detail/8769783https://avg.163.com/topic/detail/8769943https://avg.163.com/topic/detail/8770275https://avg.163.com/topic/detail/8769559https://avg.163.com/topic/detail/8769762https://avg.163.com/topic/detail/8770009https://avg.163.com/topic/detail/8770270https://avg.163.com/topic/detail/8769758https://avg.163.com/topic/detail/8769945https://avg.163.com/topic/detail/8770272https://avg.163.com/topic/detail/8769565https://avg.163.com/topic/detail/8769770https://avg.163.com/topic/detail/8769969https://avg.163.com/topic/detail/8770267https://avg.163.com/topic/detail/8769568https://avg.163.com/topic/detail/8769754https://avg.163.com/topic/detail/8769914https://avg.163.com/topic/detail/8770265https://avg.163.com/topic/detail/8769562https://avg.163.com/topic/detail/8769748https://avg.163.com/topic/detail/8769938https://avg.163.com/topic/detail/8770262https://avg.163.com/topic/detail/8769732https://avg.163.com/topic/detail/8769913https://avg.163.com/topic/detail/8770269https://avg.163.com/topic/detail/8769735https://avg.163.com/topic/detail/8769950https://avg.163.com/topic/detail/8770266https://avg.163.com/topic/detail/8769726https://avg.163.com/topic/detail/8769920https://avg.163.com/topic/detail/8770261https://avg.163.com/topic/detail/8769727https://avg.163.com/topic/detail/8769933https://avg.163.com/topic/detail/8770263https://avg.163.com/topic/detail/8769555https://avg.163.com/topic/detail/8769730https://avg.163.com/topic/detail/8769746https://avg.163.com/topic/detail/8769910https://avg.163.com/topic/detail/8769906https://avg.163.com/topic/detail/8770260https://avg.163.com/topic/detail/8770274https://avg.163.com/topic/detail/8769553https://avg.163.com/topic/detail/8769724https://avg.163.com/topic/detail/8769908https://avg.163.com/topic/detail/8770092https://avg.163.com/topic/detail/8770277https://avg.163.com/topic/detail/8769552https://avg.163.com/topic/detail/8769725https://avg.163.com/topic/detail/8769903https://avg.163.com/topic/detail/8770080https://avg.163.com/topic/detail/8770258https://avg.163.com/topic/detail/8769550https://avg.163.com/topic/detail/8769774https://avg.163.com/topic/detail/8769551https://avg.163.com/topic/detail/8769928https://avg.163.com/topic/detail/8769729https://avg.163.com/topic/detail/8770257https://avg.163.com/topic/detail/8769549https://avg.163.com/topic/detail/8769741https://avg.163.com/topic/detail/8769912https://avg.163.com/topic/detail/8770098https://avg.163.com/topic/detail/8770259https://avg.163.com/topic/detail/8769909https://avg.163.com/topic/detail/8770271https://avg.163.com/topic/detail/8769547https://avg.163.com/topic/detail/8769728https://avg.163.com/topic/detail/8769923https://avg.163.com/topic/detail/8770079https://avg.163.com/topic/detail/8770255https://avg.163.com/topic/detail/8769546https://avg.163.com/topic/detail/8769779https://avg.163.com/topic/detail/8769540https://avg.163.com/topic/detail/8769902https://avg.163.com/topic/detail/8769541https://avg.163.com/topic/detail/8770256https://avg.163.com/topic/detail/8769542https://avg.163.com/topic/detail/8769543https://avg.163.com/topic/detail/8769544