React 表单与事件 本章节我们将讨论如何在 React 中使用表单。
2026/7/14 0:08:46 网站建设 项目流程

React 表单与事件 本章节我们将讨论如何在 React 中使用表单。

HTML 表单元素与 React 中的其他 DOM 元素有所不同,因为表单元素生来就保留一些内部状态。

在 HTML 当中,像 , , 和 这类表单元素会维持自身状态,并根据用户输入进行更新。但在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

{value}

; } } const root = ReactDOM.createRoot(document.getElementById("root")); root.render( );

尝试一下 ? 上面的代码将渲染出一个值为 Hello Runoob! 的 input 元素,并通过 onChange 事件响应更新用户输入的值。

实例 2 在以下实例中我们将为大家演示如何在子组件上使用表单。 onChange 方法将触发 state 的更新并将更新的值传递到子组件的输入框的 value 上来重新渲染界面。

你需要在父组件通过创建事件句柄 (handleChange) ,并作为 prop (updateStateProp) 传递到你的子组件上。

React 实例 class Content extends React.Component { render() { return (

{this.props.myDataProp}

); } }

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 (

); } }

const root = ReactDOM.createRoot(document.getElementById('root')); root.render();

尝试一下 ? Select 下拉菜单 在 React 中,不使用 selected 属性,而在根 select 标签上用 value 属性来表示选中项。

React 实例 class FlavorForm extends React.Component { constructor(props) { super(props); this.state = {value: 'coconut'};

kotlin

体验AI代码助手

代码解读

复制代码

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 (

选择您最喜欢的网站 Google Runoob Taobao Facebook ); } }

const root = ReactDOM.createRoot(document.getElementById("root")); root.render( );

尝试一下 ? 多个表单 当你有处理多个 input 元素时,你可以通过给每个元素添加一个 name 属性,来让处理函数根据 event.target.name 的值来选择做什么。

React 实例 class Reservation extends React.Component { constructor(props) { super(props); this.state = { isGoing: true, numberOfGuests: 2 };

kotlin

体验AI代码助手

代码解读

复制代码

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;

csharp

体验AI代码助手

代码解读

复制代码

this.setState({ [name]: value });

}

render() { return (

是否离开:
访客数: ); } }

尝试一下 ? 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

点我

{value}

; } } const root = ReactDOM.createRoot(document.getElementById("root")); root.render( );

尝试一下 ? 当你需要从子组件中更新父组件的 state 时,你需要在父组件通过创建事件句柄 (handleChange) ,并作为 prop (updateStateProp) 传递到你的子组件上。实例如下:

React 实例 class Content extends React.Component { render() { return

点我

{this.props.myDataProp}

} } 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; } } const root = ReactDOM.createRoot(document.getElementById("root")); root.render( );

尝试一下 ? React AJAXReact Refs

1 篇笔记 写笔记 杨笑

117***1030@qq.com

51 父组件和子组件都用表单:

class HelloMessageChild extends React.Component { render(){ return

子组件显示:{this.props.myDataProp}

; } } 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); }

juejin.cn/post/7592040819817922601
juejin.cn/post/7592059801885032491
juejin.cn/post/7592058764120129555

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

需要专业的网站建设服务?

联系我们获取免费的网站建设咨询和方案报价,让我们帮助您实现业务目标

立即咨询