13
ReactJS का उपयोग करके इनपुट फ़ील्ड का मान कैसे प्राप्त करें?
मेरे पास निम्नलिखित प्रतिक्रिया घटक है: 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> ... ); } }; …
188
javascript
reactjs