When using an Input method editor (IME) to input text. The event will be fired
A Pen by CarterTsai on CodePen.
When using an Input method editor (IME) to input text. The event will be fired
A Pen by CarterTsai on CodePen.
<input class="myInput" | |
type="text" | |
placeholder="Starts using an Input method editor (IME) to input text"/> |
var text = document.querySelector(".myInput"); | |
console.dir(text); | |
text.addEventListener("compositionstart", function(){ | |
alert("IME Start "); | |
}); | |
text.addEventListener("compositionend", function(){ | |
alert("IME End"); | |
}); |
input { | |
width: 400px; | |
} |