javascript关于继承的笔记
摘要:
<script type="text/javascript"> function ClassA(){ } ClassA.prototype.color = "red"; ClassA.prototype.sayColor = function(){ alert(this.color); } func 阅读全文
posted @ 2019-01-29 16:35 litandy 阅读(84) 评论(0) 推荐(0) 编辑