diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-18 21:08:08 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-26 08:55:52 +0900 |
commit | 95f3289636e923ec59df0209db230b3c8c241134 (patch) | |
tree | c9f9751008677a1d9c3ea2caf0b8824d3bcd7161 | |
parent | d402e99ad3fd99263a5e1811ad4c010bc20fa6e9 (diff) | |
download | translated-content-95f3289636e923ec59df0209db230b3c8c241134.tar.gz translated-content-95f3289636e923ec59df0209db230b3c8c241134.tar.bz2 translated-content-95f3289636e923ec59df0209db230b3c8c241134.zip |
2021/09/15 時点の英語版に基づき新規翻訳
-rw-r--r-- | files/ja/web/api/shadowroot/activeelement/index.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/files/ja/web/api/shadowroot/activeelement/index.md b/files/ja/web/api/shadowroot/activeelement/index.md new file mode 100644 index 0000000000..e2e275dba3 --- /dev/null +++ b/files/ja/web/api/shadowroot/activeelement/index.md @@ -0,0 +1,46 @@ +--- +title: ShadowRoot.activeElement +slug: Web/API/ShadowRoot/activeElement +tags: + - API + - プロパティ + - リファレンス + - ShadowRoot + - ウェブコンポーネント + - シャドウ DOM +browser-compat: api.ShadowRoot.activeElement +translation_of: Web/API/ShadowRoot/activeElement +--- +{{APIRef("Shadow DOM")}} + +**`activeElement`** は {{domxref("ShadowRoot")}} インターフェイスの読み取り専用プロパティで、シャドウツリー内でフォーカスを持っている要素を返します。 + +## 構文 + +```js +shadowRoot.activeElement +``` + +### 値 + +現在フォーカスを持っている {{domxref('Element')}}、またはフォーカスを持っている要素がなければ `null` です。 + +## 例 + +```js +let customElem = document.querySelector('my-shadow-dom-element'); +let shadow = customElem.shadowRoot; +let focusedElem = shadow.activeElement; +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{domxref("Document.activeElement")}} |