在我的代码中,我有一个带有 DOM 元素的对象。
为了保持示例清晰,下面的代码已更改为最低限度。
var Test = function(element){
//if element does not come from the DOM -> throw
};
如何确定该元素来自 DOM 树?
if(element.parentNode === null) {
throw "not coming from the DOM";
}
这段代码足以说明元素来自 DOM 吗?