function Test() {
var this_ = this;
this.init = function() {
console.log(this, this_);
this.second();
}();
this.second = function() {
}
}
$(function() {
var test = new Test();
});
this.init = function() {
console.log(this, this_);
this.second();
}
this.second = function() {
}
this.init()