<slot>: Das Web Component Slot-Element
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Das <slot>
HTML-Element—Teil des Web Components-Technologiepakets—ist ein Platzhalter innerhalb einer Web-Komponente, den Sie mit Ihrem eigenen Markup füllen können. Dies ermöglicht es Ihnen, separate DOM-Bäume zu erstellen und diese zusammen darzustellen.
Attribute
Dieses Element enthält die globalen Attribute.
name
-
Der Name des Slots.
Ein benannter Slot ist ein
<slot>
-Element mit einemname
-Attribut.
Beispiele
<template id="element-details-template">
<style>
details {
font-family: "Open Sans Light", Helvetica, Arial, sans-serif;
}
.name {
font-weight: bold;
color: #217ac0;
font-size: 120%;
}
h4 {
margin: 10px 0 -8px 0;
background: #217ac0;
color: white;
padding: 2px 6px;
border: 1px solid #cee9f9;
border-radius: 4px;
}
.attributes {
margin-left: 22px;
font-size: 90%;
}
.attributes p {
margin-left: 16px;
font-style: italic;
}
</style>
<details>
<summary>
<code class="name">
<<slot name="element-name">NEED NAME</slot>>
</code>
<span class="desc"><slot name="description">NEED DESCRIPTION</slot></span>
</summary>
<div class="attributes">
<h4>Attributes</h4>
<slot name="attributes"><p>None</p></slot>
</div>
</details>
<hr />
</template>
Hinweis: Sie können dieses komplette Beispiel in Aktion sehen unter element-details (sehen Sie es sich live an). Zusätzlich finden Sie eine Erklärung bei Using templates and slots.
Technische Zusammenfassung
Inhaltskategorien | Flow-Inhalt, Phrasing-Inhalt |
---|---|
Erlaubter Inhalt | Transparent |
Ereignisse | [`slotchange`](/de/docs/Web/API/HTMLSlotElement/slotchange_event) |
Tag-Auslassung | Keine, sowohl das Start- als auch das End-Tag sind obligatorisch. |
Zulässige Eltern | Jedes Element, das Phrasing-Inhalt akzeptiert |
Implizite ARIA-Rolle | Keine entsprechende Rolle |
Zulässige ARIA-Rollen | Keine role erlaubt |
DOM-Schnittstelle | [`HTMLSlotElement`](/de/docs/Web/API/HTMLSlotElement) |
Spezifikationen
Specification |
---|
HTML Standard # the-slot-element |
DOM Standard # shadow-tree-slots |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- HTML
<template>
-Element - HTML
slot
-Attribut - CSS
::slotted
Pseudo-Element - CSS Scoping Modul