Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
focusout/blur イベントは、要素がフォーカスを失った後にのみ発生します...ちなみに、私はプラグインを使用せずにそれを行うことを好みます。
うん。これを使用できます:
<input type="text" onblur="this.focus();" />
またはjQueryで:
$(element).blur(function(){ $(this).focus(); });