how to get a value into a react component
class NameForm extends React.Component {
constructor(props) {
super(props);
this.handleSubmit = this.handleSubmit.bind(this);
this.input = React.createRef();
}
handleSubmit(event) {
alert('A name was submitted: ' + this.input.current.value);
event.preventDefault();
}
render() {
return (
<form onSubmit={this.handleSubmit}>
<label>
Name:
<input type="text" ref={this.input} />
</label>
<input type="submit" value="Submit" />
</form>
);
}
}
Also in JavaScript:
- interpolation react
- get a user input react
- javascript variable shortcuts
- input type date doesn't work in ie
- JavaScript after
- Changes not staged for commit: modified: ../package.json
- async await anonymous function
- js array clone
- create angular project cli version 8
- javascript the difference between innerText vs. innerHTML vs. textContent
- js static methods
- mixin in styled components
- unable to communicate with the paypal gateway in magento 2
- is nodejs code visible client side
- How to access the request body when POSTing using Node.js and Express
- javascript set class
- jquery ajax 500 error handling
- adonis lucid join
- alpine js open outside div
- javascript string single or double quotes
- jquery ajax on fail
- firebase get current user javascript
- http header express
- javascript date parse yyyy-mm-dd