采用call方式实现js继承
摘要:复制代码代码如下://采用call方式实现js继承functionA(color){this.Acolor=color;this.Ashow...
复制代码 代码如下:
//采用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继承】相关文章:
★ 广告显示判断
★ javascript实现点击按钮弹出一个可关闭层窗口同时网页背景变灰的方法
★ 动态提示的下拉框
下一篇:
alert和confirm功能介绍