这是我的代码:
myExt = {};
myExt.Panel = function (config){
var d = document.createElement("div");
/*Do something (a lot) with config and d here
// a lot of code here
*/
return
{
div:d,
events:e,
customattribs:ca
};
}
这是我的来电者:
var p = new myExt.Panel({
id:'parent',
events:{
onload:function(){
alert("onload");
}
},
//more configs
});
如果我做
console.log(p)
我得到空值。请帮我调试问题。