React Textbox onChange Example | React Text Input Tutorial
Today, react textbox onchange example is our main topic. i explained simply about react textbox component example. we will help you to give example of react js textbox example. you will learn how to use textbox in react js. Let's see bellow example how to use input in react component.
If you are new in react then you want to see how to use text box in react app. but it's very easy to use text input in react js app. you can use it as you use in html and you have to write change event on it. using that change event you have to store value into form state. so you can get that data on submit.
In this example, we will take simple "name" input field and add onchange event with handleChange() then we will assign value on state variable array. Then on submit event we will take that values with state variable.
So, let's see bellow preview and code:
Example Code:
import React, { Component } from 'react';
import { render } from 'react-dom';
class App extends Component {
constructor() {
super();
this.state = {
name: 'Hardik'
};
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
handleChange(event) {
this.setState({name: event.target.value});
}
handleSubmit(event) {
console.log(this.state);
event.preventDefault();
}
render() {
return (
<div>
<h1>React Textbox onChange Example - ItSolutionStuff.com</h1>
<form onSubmit={this.handleSubmit}>
<input
type="text"
value={this.state.name}
onChange={this.handleChange} />
<input type="submit" value="Submit" />
</form>
</div>
);
}
}
render(<App />, document.getElementById('root'));
Output:
{name: "Hardik ss"}
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Get Current Date and Time in React?
- How to Create Custom Component in React?
- How to Loop Array in React JS? | React Foreach Loop Example
- React Conditional Statements in Render Tutorial
- How to Use Ternary Operator in React JS?
- React If Else If Condition in Render Example
- React If Condition in Render Example
- React Bootstrap Tabs Example Tutorial
- React Bootstrap Tooltip Example
- React Bootstrap Collapse Example