欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js继承的原型链式

程序员文章站 2022-03-08 20:23:04
...
function parent(){
	this.name="lily";
    this.method=function(){
	    alert("ok");
	    }
    };
    function son(){
		this.age=18;
	}; 
	son.prototype = new parent();
	var new_son= new son();
	console.log(new_son.name); //lily
</script>

 

相关标签: 继承