32
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[JavaScript]フォーカスが当たっている要素を取得してフォーカスを外す

Last updated at Posted at 2016-04-01

文書内でフォーカスされている要素を取得して、その要素のフォーカスを外す。
モバイルなどでキーボードが出ている状態などを解除できる。
#フォーカスが当たっている要素を取得

document.activeElement

#要素のフォーカスを外す

Element.blur()

#合成

document.activeElement.blur()

#サポート状況
document.activeElement - Web API インターフェイス | MDNを見てみたが、サポートされているモバイルブラウザのバージョンはわからなった。
多分、ほぼサポートされていると思う[要出典]

32
27
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
32
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?