blob: 51c660e9ce650eb3577f6fbdeaa54b101f984f75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
---
title: Slotable
slug: conflicting/Web/API/Element
tags:
- API
- Web Components
- 参考
- 接口
translation_of: Web/API/Slottable
translation_of_original: Web/API/Slotable
original_slug: Web/API/Slotable
---
<p>{{APIRef("Shadow DOM")}}</p>
<p><code>Slotable</code> mixin 定义了允许节点成为 {{htmlelement("slot")}} 元素的内容的特性——下面的特性被包含在 {{domxref("Element")}} 和 {{domxref("Text")}} API 之中。</p>
<h2 id="属性">属性</h2>
<dl>
<dt>{{domxref("Slotable.assignedSlot")}} {{readonlyInline}}</dt>
<dd>返回节点所插入的 {{htmlelement("slot")}} 元素。</dd>
</dl>
<h2 id="方法">方法</h2>
<p>无。</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">备注</th>
</tr>
<tr>
<td>{{SpecName('DOM WHATWG','#slotable','Slotable')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.Slotable")}}</p>
|