[]请问我怎么在js中调用这个方法
var Zszen;我使用
(function (Zszen) {
var Test = (function () {
function Test() {
this.rand = Math.random();
}
Test.output = function (){
console.log(this.rand);
}
return Test;
}());
Zszen.Test = Test;
})(Zszen || (Zszen = {}));
var a = new Zszen.Test();
a.output(); //这句我调用说找不到, 应该怎么写自定义方法
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
Aar0n
赞同来自: