やりたいこと inputで予測変換候補が出ていない時にEnterが押されたらsubmit関数叩きたい isComposingを使用する keydownのEventのプロパティにisComposingというものがある 変換開始(compositionstart)〜変換終了(compositionend)までの間、trueを返してくれる ref: isComposing ref: compositionstart ref: compositionend サッと試すなら下記のような感じ document.getElementById("hoge").addEventListener("keydown",(e)=>{ console.log(e.isComposing) // false }) const Hoge:React.FC = ():JSX.Element => { /** ボタン押下o