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