IME vs Input Field Shortcuts: Enhancing Text Input Accessibility
https://ef81sp.github.io/ime-vs-input-keyboard-shortcut/
IME
code:js
inputElement.addEventListener("keydown", (event) => {
if (event.isComposing || event.keyCode === 229) {
return;
}
if (event.key === "Enter") {
submit();
}
});
isComposing
日本語入力を確定した時に送信されてしまう問題