87,993
社区成员
发帖
与我相关
我的任务
分享var HelloWorld = function(els){
var Component = function(els){
this.els = els;
};
Component.prototype = {
initialize : function(){
alert("HelloWorld");
}
}
return new Component(els);
}
var comp = new HelloWorld("body");
comp.initialize();