码迷,mamicode.com
首页 > 其他好文 > 详细

call继承父级属性,prototype继承父级方法

时间:2017-08-26 13:38:24      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:class   document   new   abc   alert   call   asc   style   ext   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>Document</title>
</head>
<body>
    
</body>
<script type="text/javascript" >
// 通过call继承父级属性
    function A(){
        this.abc=12
    }
   
 function B(){
    // this → new B();
    A.call(this)
 }
 var obj = new B();
alert(obj.abc) //12

// 通过prototype继承父级方法

A.prototype.show=function(){
    alert(this.abc)
}

B.prototype.show=A.prototype.show; //tongguo prototype原型继承父级方法

obj.show() //12
</script> </html>

 

call继承父级属性,prototype继承父级方法

标签:class   document   new   abc   alert   call   asc   style   ext   

原文地址:http://www.cnblogs.com/model-zachary/p/7435067.html

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