当前位置

网站首页> 程序设计 > 开源项目 > 程序开发 > 浏览文章

JavaScript继承写法 - Rocky的前端

作者:小梦 来源: 网络 时间: 2024-06-22 阅读:

构造函数+原型法

function person(name,age){    this.name = name;    this.age = age;}person.prototype.say = function(){    console.log(this.name+":"+this.age);}function superman(name,age){    person.call(this,name,age);}superman.prototype = new person();superman.prototype.fight = function(){    this.say();    console.log("fighting...");}var s = new superman('superman',29);s.fight();

热点阅读

网友最爱