这里讲了一个最最最简单的JS中基于原型链的继承和多态. 先看一下以下这段代码的实现(A是“父类”,B是“子类”): var A = function(){ this.value = 'a'; this.showValue = function(){ console.log(this.value); } } var a = new A(); a.showValue(); var B = function(){ this.value = 'b'; }; B.prototype = new A();…