我想removeChild
在基于 reactJs 的项目中增强 html 的属性,当我使用 webpack 构建它并 eslint 它显示ReferenceError: Node is not defined
这是我正在尝试使用的代码。
var original = Node.prototype.removeChild;
Node.prototype.removeChild = function(node) {
try{
original.apply(this, arguments);
}catch(e){
console.log(e);
}
}
请帮我解决这个错误。