function extend(Child, Parent){
var F = function() { }
F.prototype = Parent.prototype
Child.prototype = new F()
Child.prototype.constructor = Child
Child.superclass = Parent.prototype
}
我有一个问题,在扩展父类时,正在删除子原型函数,如何保存子函数并使用该函数扩展父函数?