domNode.isConnected
是可在chrome中使用的标志。它显示domNode是否是文档的一部分。跨浏览器兼容吗?如果没有其他浏览器的有效替代方法?
请提供任何可用文档的链接。
最佳答案
它不受支持,但是很容易填充。
(function (supported){
if (supported) return;
Object.defineProperty(window.Node.prototype, 'isConnected', {get})
function get() {
return document.contains(this);
}
})('isConnected' in window.Node.prototype);