how to disable <ENTER> key for form submit in react-bootstrap
问题 In the following snippet, I have a number of input forms that are type text. If the user hits , it seems I am getting the same synthetic event as if they press the submit button. I want to ignore the as a form submit, and only allow one to press the SUBMIT button. (I deleted some of the Form Groups to cut down on the example). In all cases (button or ENTER key) e.key is undefined e.which is undefined e.type is submit e.target is the submit button (this is a synthetic event) const React =