我正在尝试垫片Element.prototype.children,它应该返回一个HTMLCollection
然而
var h = new HTMLCollection();
//TypeErrror: HTMLCollection is not a constructor
Run Code Online (Sandbox Code Playgroud)
和
var h = Object.create(HTMLCollection.prototype);
h[0] = div;
h.item(0);
// Could not convert JavaScript argument
Run Code Online (Sandbox Code Playgroud)
测试Firefox 7和Chrome
除了垫片之外HTMLCollection还有什么方法可以与之互动吗?
如果您可以提出解决方案,也请提供有关此github问题的反馈