摘要:
静态方法的继承 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
阅读(121)
评论(0)
推荐(0)