請考慮以下JavaScript庫中的代碼;如何在不實例化的情況下獲取註冊的Web組件的原型
document.registerElement('my-component', { prototype: { foo: true }});
它似乎registerElement返回一個函數,可以用作構造函數。
以後如何獲取此功能的參考?
var tempDom = document.createElement('my-component')
console.log(tempDom.__proto__)
似乎工作,但它需要先創建一個實例。
謝謝。這似乎是合理的。 – TTx 2015-02-17 20:01:46