摘要: <script> //js中的继承 function Animal(){ this.kind = "animal"; } Animal.prototype.type = "water"; //绑定构造函数,原型中的属性和方法不会被继承。 function Cat(Name,Color){ this. 阅读全文
posted @ 2019-04-23 08:44 懵智 阅读(154) 评论(0) 推荐(0) 编辑