function aa(){
this.bb = (function(){alert("测试")});
this.cc = (function(){alert("测试2")});
}
引用的时候
new aa().bb();
new aa().cc();
或者是
var AA = new aa();
AA.bb();
AA.cc();