Posted in Javascript onMay 20, 2014
//采用call方式实现js继承 function A(color) { this.Acolor = color; this.AshowColor = function() { document.writeln("Acolor: " + this.Acolor); } } function B(color, name) { A.call(this, color); this.Bname = name; this.BshowName = function() { document.writeln("Bname: " + this.Bname); } } var objA = new A("red"); objA.AshowColor(); document.writeln("----------------"); var objB = new B("black", "demo"); objB.AshowColor(); objB.BshowName(); document.writeln("----------------");
采用call方式实现js继承
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@