摘要: JS面向对象 <script> function num(val) { return val * 8 } function Index(name, age) { this.name = name; this.age = age; } Index.prototype = { constructor: 阅读全文
posted @ 2017-08-16 11:57 gyz418 阅读(316) 评论(3) 推荐(0)