IME変換中のエンターキーで送信される!への対処法 - Classi開発者ブログ
https://tech.classi.jp/entry/2024/04/23/183000
IME
変換中のエンターキーでの送信に関する問題
code:js
document.addEventListener('keydown', function(event) {
if ((event.key === 'Enter' && event.isComposing) || event.keyCode === 229) {
event.stopPropagation();
}
},{capture: true});
Classi株式会社
の
技術ブログ