(function() {
var Account = function() {
this._init();
};
Account.prototype = {
_init: function() {
this.start();
},
start: function() {
alert("Hello World");
}
}
return Account;
});
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
学习是最好的投资!