如何从Document对象继承到我的子对象

时间:2018-06-27 15:53:39

标签: javascript

我正在尝试从我的代码中的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]')

0 个答案:

没有答案