在 Web 组件中,我有一个自定义元素,我想访问下一个兄弟元素。我怎样才能做到这一点?我有这个
class DomElement extends HTMLElement {
constructor() {
super();
let shadowRoot = this.attachShadow({mode: 'open'});
const t = document.currentScript.ownerDocument.querySelector('#x-foo-from-template');
const instance = t.content.cloneNode(true);
shadowRoot.appendChild(instance);
}
fixContentTop() {
var sibling = this.nextElementSibling;
if (sibling) {
}
}
}
但sibling
变为空。
有没有人知道怎么做?
谢谢