在这里,我尝试创建一个名为 com.matogen.ght 的包,其中包含一个类 Calendar。我希望在实例化日历对象时自动调用 init() 方法。下面的示例有效,但我仍然必须显式调用 init() 方法。
var com = {
matogen : {
ght : {
'Calendar' : function() {
this.init = function() {
console.log("This is my constructor");
}
}
}
}
}
$(document).ready(function() {
var cal = new com.matogen.ght.Calendar();
cal.init();
});