13
Bagaimana cara mendapatkan nilai bidang input menggunakan ReactJS?
Saya memiliki komponen Bereaksi berikut: export default class MyComponent extends React.Component { onSubmit(e) { e.preventDefault(); var title = this.title; console.log(title); } render(){ return ( ... <form className="form-horizontal"> ... <input type="text" className="form-control" ref={(c) => this.title = c} name="title" /> ... </form> ... <button type="button" onClick={this.onSubmit} className="btn">Save</button> ... ); } }; Konsol …
189
javascript
reactjs