答案 0 :(得分:4)
有几种实例化方法和元素。
声明:
<my-element>
JS:
document.createElement('my-element');
构造函数(如果找到的话):
new MyElement();
请参阅http://www.html5rocks.com/en/tutorials/webcomponents/customelements/#instantiating
答案 1 :(得分:3)
我相信您正在寻找constructor
(请参阅here)属性。
您需要将其包含在聚合物元素声明中。
<polymer-element name="p-paper"
attributes="content"
constructor="Paper"
noscript>
然后您可以像这样创建元素的实例 -
// How to create an instance of <p-paper> here?
var paper = new Paper();