码迷,mamicode.com
首页 > 编程语言 > 详细

javascript 的类式继承(构造函数)

时间:2017-12-09 18:14:02      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:cal   alert   构造函数   logs   this   common   col   and   div   

<script type="text/javascript">   
//类式继承(构造函数)
var father = function(){
    this.age = 52;
    this.say =function(){
        alert(‘hello i am‘+this.name+‘and i am‘+this.age+‘years old‘)
    }
}
var child = function(){
    this.name = ‘bill‘;
    father.call(this);
}
var man = new child();
man.say();



</script>

技术分享图片

javascript 的类式继承(构造函数)

标签:cal   alert   构造函数   logs   this   common   col   and   div   

原文地址:http://www.cnblogs.com/dujunfeng/p/8011986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!