摘要: // time:2016.2.1 // des:继承 function Enemy() { this.level = 50; console.log("Enemy constructor"); } Enemy.prototype.attack_play = function(){ console.log("attack_play"); }; Enemy.proto... 阅读全文
posted @ 2019-01-05 15:22 jadeshu 阅读(110) 评论(0) 推荐(0) 编辑