diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-18 20:46:53 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-26 08:55:52 +0900 |
commit | 0d86fe8d2a9bbea46a288df07e28a369960fbc15 (patch) | |
tree | 09fe5c534ec88cd1b96d8c60d03e3252690f9c19 /files/ja/web/api/shadowroot | |
parent | 1a9ba5fd5c9e1c06f92ee51005bf9dd952862fea (diff) | |
download | translated-content-0d86fe8d2a9bbea46a288df07e28a369960fbc15.tar.gz translated-content-0d86fe8d2a9bbea46a288df07e28a369960fbc15.tar.bz2 translated-content-0d86fe8d2a9bbea46a288df07e28a369960fbc15.zip |
2021/09/15 時点の英語版に基づき新規翻訳
Diffstat (limited to 'files/ja/web/api/shadowroot')
-rw-r--r-- | files/ja/web/api/shadowroot/host/index.md | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/files/ja/web/api/shadowroot/host/index.md b/files/ja/web/api/shadowroot/host/index.md new file mode 100644 index 0000000000..bac179f4b7 --- /dev/null +++ b/files/ja/web/api/shadowroot/host/index.md @@ -0,0 +1,45 @@ +--- +title: ShadowRoot.host +slug: Web/API/ShadowRoot/host +tags: + - API + - Host + - プロパティ + - リファレンス + - ShadowRoot + - シャドウ DOM +browser-compat: api.ShadowRoot.host +--- +{{APIRef("Shadow DOM")}} + +**`host`** は {{domxref("ShadowRoot")}} の読み取り専用プロパティで、 `ShadowRoot` が取り付けられている DOM 要素の参照を返します。 + +## 構文 + +```js +const someElement = shadowRoot.host +``` + +### 値 + +DOM の {{domxref('Element')}} です。 + +## 例 + +```js +let customElem = document.querySelector('my-shadow-dom-element'); +let shadow = customElem.shadowRoot; + + ... + +// 後で、元のホスト要素を返す +let hostElem = shadow.host; +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} |