我想创建一个名为NMLDocument
的类,它继承自Document
但具有一些其他属性。
我已尝试过此代码:
NMLDocument.prototype = Object.create(Document.prototype);
但浏览器会抛出以下错误:
Ignoring get or set of property that has [LenientThis] because the "this" object is incorrect.
有什么办法吗? (我不想单独包括所有属性)