এখানে আমার ফর্ম এবং অনক্লিক পদ্ধতিটি। কীবোর্ডের এন্টার বোতামটি চাপলে আমি এই পদ্ধতিটি সম্পাদন করতে চাই। কীভাবে?
NB: কোন jquery প্রশংসা করা হয় না।
comment: function (e) {
e.preventDefault();
this.props.comment({comment: this.refs.text.getDOMNode().value, userPostId:this.refs.userPostId.getDOMNode().value})
},
<form className="commentForm">
<textarea rows="2" cols="110" placeholder="****Comment Here****" ref="text" /><br />
<input type="text" placeholder="userPostId" ref="userPostId" /> <br />
<button type="button" className="btn btn-success" onClick={this.comment}>Comment</button>
</form>