Slottable: assignedSlot - Web APIs 编辑
The assignedSlot
read-only property of the Slottable
interface returns an HTMLSlotElement
representing the <slot>
element the node is inserted in.
Syntax
var slotElement = elementInstance.assignedSlot
Value
An HTMLSlotElement
instance, or null
if the element is not assigned to a slot, or if the associated shadow root was attached with its mode
set to closed
(see Element.attachShadow
for further details).
Examples
In our simple-template example (see it live), we create a trivial custom element example called <my-paragraph>
in which a shadow root is attached and then populated using the contents of a template that contains a slot named my-text
.
When <my-paragraph>
is used in the document, the slot is populated by a slottable element by including it inside the element with a slot
attribute with the value my-text
. Here is one such example:
<my-paragraph>
<span slot="my-text">Let's have some different text!</span>
</my-paragraph>
In our JavaScript file we get a reference to the <span>
shown above, then log a reference to the original <slot>
element the <span>
was inserted in.
let slottedSpan = document.querySelector('my-paragraph span')
console.log(slottedSpan.assignedSlot); // logs '<slot name="my-text">'
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'assignedSlot' in that specification. | Living Standard | Initial definition. |
Browser Compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论