gpt4 book ai didi

javascript - :host selector not working for custom element having shadow dom

转载 作者:太空宇宙 更新时间:2023-11-04 01:12:07 24 4
gpt4 key购买 nike

我正在尝试创建一个附加了 shadow dom 的自定义组件。自定义组件被创建并添加到附加了影子 dom 的 dom 但 :host 样式没有被应用

HTML

<html>
<head></head>
<body>
<notify-user>
<h3 slot='title'>New message in #customer-support</h3>
<p>This is shadow dom in action</p>
<button>Reply</button>
</notify-user>
<script src='main.js' type="text/javascript"></script>
</body>
</html>

JS

class Notification extends HTMLElement{
constructor(){
super();
}
connectedCallback(){
console.log('notification custom element attached to DOM');
console.log('this',this);
let nRoot = this.attachShadow({mode : 'open'});
nRoot.innerHTML = `
<style>
:host{
background-color : #3498db;
border-radius : 5px;
line-height: 1.4;
width: 25rem;
}
button {
min-width : 5rem;
padding: 0.5rem 2rem;
margin: 0.2rem;
background-color: transparent;
border-radius: 2px;
border: none;
color : white;
}
p{
color : white;
}
</style>
<div class="wrapper">
<button><span>X<span></button>
<slot name='title'></slot>
<slot></slot>
<p>1 minute ago</p>
</div>`;

}
}

customElements.define('notify-user',Notification);

当我运行时,这是为 :host 定义的浏览器样式未应用。

有人可以帮忙吗?

最佳答案

这里应用了:host 选择器。问题是,您的宿主元素没有可显示的可见内容。

解决此问题的一个简单方法是将 CSS 显示设置设置为“阻止”,以使元素可见:

:host {
background-color: #3498db;
border-radius: 5px;
line-height: 1.4;
width: 25rem;
display: block;
}

关于javascript - :host selector not working for custom element having shadow dom,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50999753/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com