我是靠谱客的博主 土豪心情,最近开发中收集的这篇文章主要介绍JS 继承实例分析,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

function P(name){
this.name=name;

this.p1=function(){
alert('Parent Constructor');
}
return this;
}
function C(name,id){
//this.method=P;
//this.method(name); //1st method
//P.call(this,name); //2nd method
P.apply(this,new Array(name));//3rd method
this.id=id;
this.dis=function(){
alert(this.name);
}
}
function dis(){
alert(this.name);
}
function t(){
var cc=new C('N','Id');
cc.dis();
cc.p1();
}

最后

以上就是土豪心情为你收集整理的JS 继承实例分析的全部内容,希望文章能够帮你解决JS 继承实例分析所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(118)

评论列表共有 0 条评论

立即
投稿
返回
顶部