LoginSignup
0
0

More than 3 years have passed since last update.

React.js Enterキーでsubmitされるのを阻止する

Posted at

手軽に阻止したい

  • とりあえず、イベントだけ消し去りたいメモ
  • onKeyDownを書く
<Form.Control type="text"  onKeyDown={e => { if (e.key == 'Enter'){e.preventDefault()} }} />
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0