09 2013 档案

摘要:静态方法的继承 function ClassA(name) { this.name = name; this.showSub = function (a, b) { alert(a - b); } this.getName = function () { alert(this.name); } } function ClassB() { this.showAdd = funct... 阅读全文
posted @ 2013-09-06 14:51 cniteeq 阅读(117) 评论(0) 推荐(0) 编辑