aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/shadowroot
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-18 20:31:16 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-26 08:55:52 +0900
commit34178437c9a615bd87c8ba4a634ba6d917db2638 (patch)
tree27ec754f07c060004aea978d778a71a730f922bd /files/ja/web/api/shadowroot
parent6c3d6e18f6982382febbc67f4345b4eaf8152ec0 (diff)
downloadtranslated-content-34178437c9a615bd87c8ba4a634ba6d917db2638.tar.gz
translated-content-34178437c9a615bd87c8ba4a634ba6d917db2638.tar.bz2
translated-content-34178437c9a615bd87c8ba4a634ba6d917db2638.zip
2021/09/15 時点の英語版に基づき新規翻訳
Diffstat (limited to 'files/ja/web/api/shadowroot')
-rw-r--r--files/ja/web/api/shadowroot/onslotchange/index.md49
1 files changed, 49 insertions, 0 deletions
diff --git a/files/ja/web/api/shadowroot/onslotchange/index.md b/files/ja/web/api/shadowroot/onslotchange/index.md
new file mode 100644
index 0000000000..e06a5df6f7
--- /dev/null
+++ b/files/ja/web/api/shadowroot/onslotchange/index.md
@@ -0,0 +1,49 @@
+---
+title: ShadowRoot.onslotchange
+slug: Web/API/ShadowRoot/onslotchange
+tags:
+ - API
+ - イベントハンドラー
+ - 実験的
+ - ShadowRoot
+ - プロパティ
+ - リファレンス
+ - シャドウ DOM API
+ - slot
+ - slotchange
+ - onslotchange
+browser-compat: api.ShadowRoot.onslotchange
+---
+{{ApiRef('DOM')}}{{SeeCompatTable}}
+
+**`onslotchange`** は {{domxref("ShadowRoot")}} の[イベントハンドラー](/ja/docs/Web/Events/Event_handlers)プロパティで、 {{domxref("HTMLSlotElement/slotchange_event", "slotchange")}} イベントを処理します。
+
+`slotchange` イベントは、スロットに含まれるノードが変化したときに {{DOMxRef("HTMLSlotElement")}} インスタンス ({{HTMLElement("slot")}} 要素) で発行されます。
+
+## 例
+
+次のスニペットは、 [slotchange の例](https://github.com/mdn/web-components-examples/tree/master/slotchange) を少し修正したもので、 `slotchange` イベントのリスナーを追加するのではなく、 `ShadowRoot.onslotchange` プロパティを使用するものです。
+
+スロットの要素が変更されるたびに、どのスロットが変更されたか、そしてスロット内の新しいノードが何であるかというレポートをコンソールに記録しています。
+
+```js
+this.shadowRoot.onslotchange = function(e) {
+ const nodes = e.originalTarget.assignedNodes();
+ console.log(`Element in Slot "${e.originalTarget.name}" changed to "${nodes[0].outerHTML}".`);
+};
+```
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}
+
+## 関連情報
+
+- [テンプレートとスロットの使用](/ja/docs/Web/Web_Components/Using_templates_and_slots)
+- {{event("slotchange")}} event
+- {{domxref("HTMLSlotElement")}}
+- {{domxref("GlobalEventHandlers.onslotchange")}}