React - How to Allow Only Numbers in Textbox?
Today, i will let you know example of allow only numbers in textbox react js. This article will give you simple example of allow only numbers in input field react. i explained simply about only numbers allowed in textbox reactjs. This tutorial will give you simple example of react allow only numbers in input.
In this example, i will show you simple example of allow only number in input text field in react js. we will write that code on change event. i take one number text field and you can only enter number in that textbox.
So, let see bellow example code for enter only number in textbox react js.
Example Code:
import React, { Component } from 'react';
import { render } from 'react-dom';
class App extends Component {
constructor() {
super();
this.state = {
number: ''
};
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
handleChange(event) {
const re = /^[0-9\b]+$/;
if (event.target.value === '' || re.test(event.target.value)) {
this.setState({number: event.target.value})
}
}
handleSubmit(event) {
console.log(this.state);
event.preventDefault();
}
render() {
return (
<div>
<h1>How to Allow Only Numbers in Textbox in React - ItSolutionStuff.com</h1>
<form onSubmit={this.handleSubmit}>
<input
type="text"
value={this.state.number}
onChange={this.handleChange} />
<input type="submit" value="Submit" />
</form>
</div>
);
}
}
render(
, document.getElementById('root'));
Now we are ready to run our application, so let's run using bellow command:
npm start
Open bellow url:
http://localhost:3000
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
- React Email Validation Example
- React Form Validation Tutorial Example
- React Multi Select Dropdown Example
- React Multiple Checkboxes Example
- React Checkbox onchange | React Checkbox Example
- React Radio Button onchange | React Radio Button Example
- React Select Dropdown onchange | React Select Box Example
- How to Change Date Format in React?
- React If Else If Condition in Render Example
- React Bootstrap Modal Popup Example