节点:isConnected 属性

基线 广泛可用

此功能非常成熟,可在许多设备和浏览器版本上运行。它自 2020 年 1 月.

报告反馈

Node 接口的只读 isConnected 属性返回一个布尔值,表示该节点是否直接或间接连接到 Document 对象。

示例

如果节点连接到其相关的上下文对象,则为 true,否则为 false

标准 DOM

标准 DOM 示例
let test = document.createElement("p");
console.log(test.isConnected); // Returns false
document.body.appendChild(test);
console.log(test.isConnected); // Returns true

js

Shadow DOM

标准 DOM 示例
// Create a shadow root
const shadow = this.attachShadow({ mode: "open" });

// Create some CSS to apply to the shadow DOM
const style = document.createElement("style");
console.log(style.isConnected); // returns false

style.textContent = `
.wrapper {
  position: relative;
}

.info {
  font-size: 0.8rem;
  width: 200px;
  display: inline-block;
  border: 1px solid black;
  padding: 10px;
  background: white;
  border-radius: 10px;
  opacity: 0;
  transition: 0.6s all;
  positions: absolute;
  bottom: 20px;
  left: 10px;
  z-index: 3
}
`;

// Attach the created style element to the shadow DOM

shadow.appendChild(style);
console.log(style.isConnected); // Returns true

规范

Shadow DOM 示例
规范
# DOM 标准

浏览器兼容性

ref-for-dom-node-isconnected①

另请参阅