我正在尝试从我的代码中的Document
对象继承,但是它不起作用,请问我该如何实现?
到目前为止,这是我的代码:
function Doc() {
Document.call(this)
}
Doc.prototype = Object.create(Document.prototype);
Doc.prototype.constructor = Doc;
var userdoc = new Doc();
// it is not working when I try to do
userdoc.querySelectorAll('[abs-text]')