摘要: // 定义一个动物类 function Animal (name) { // 属性 this.name = name || 'Animal'; // 实例方法 this.sleep = function(){ console.log(this.name + '正在睡觉!'); } } // 原型方法 阅读全文
posted @ 2018-09-30 16:03 He先生的前端博客 阅读(267) 评论(0) 推荐(0)