We are currently in the process of maintenance for IE11 in the service.
I am in the same situation as above. Why are you doing this? Any help would be appreciated. Thank. I didn't speak English well, so I used a translator. Please understand the clumsy context. It only happens in IE11. I tested firefox, chrome and edge.
My development environment is as follows : windows10, IE11 The sample code below is attached.
function A_alert() {
alert("a_form alert");
}
function B_alert() {
alert("b_form alert");
}
<input id="a_form" type="text" onfocusout="A_alert()">
<input id="b_form" type="password" onfocusout="B_alert()">
console.log():
a_form : mouse down a_form : focus a_form : mouse up a_form : click b_form : mouse down a_form : focus out b_form : mouse up a_alert : ok a_form : blur b_form : focus b_form : focus out b_alert :raised error
<form>
<input id="a_form" type="text" onfocusout="A_alert()" />
<input id="b_form" type="password" onfocusout="B_alert()" />
</form>
wrap by form in IE