js 实现继承
摘要:
一、使用原型链 function Animal1(leg){ this.leg=leg; } function Dog1(name){ this.name=name; Animal1.call(this,4) //!!import1 } Dog1.prototype.__proto__=Animal 阅读全文
posted @ 2023-04-24 17:59 ducky_L 阅读(7) 评论(0) 推荐(0) 编辑
2023年4月24日 #
posted @ 2023-04-24 17:59 ducky_L 阅读(7) 评论(0) 推荐(0) 编辑
posted @ 2023-04-24 17:44 ducky_L 阅读(29) 评论(0) 推荐(0) 编辑
posted @ 2023-04-24 11:40 ducky_L 阅读(38) 评论(0) 推荐(0) 编辑
posted @ 2023-04-24 10:25 ducky_L 阅读(106) 评论(0) 推荐(0) 编辑