码迷,mamicode.com
首页 > Web开发 > 详细

js--继承

时间:2016-04-17 17:30:46      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

ji继承一般分为两种办法,一种是类继承,一种是原型继承

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
    </head>
    <body>
        <script type="text/javascript">
        //类式继承:利用JS中的call()和apply()方法
            function Animal(){    
                this.name = "Animal";    
                this.showName = function(){alert(this.name);}    
            }    
            function Cat(){this.name = "Cat";}    
               
            var animal = new Animal();    
            var cat = new Cat();    
                
            //通过call或apply方法,将原本属于Animal对象的showName()方法交给对象cat来使用了。    
            animal.showName.call(cat,","); //animal.showName.apply(cat,[]); 
        </script>
    </body>
</html>

技术分享

 

 

 

 

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
    </head>
    <body>
        <script type="text/javascript">
            function Animal(name){      
                this.name = name;      
                this.showName = function(){      
                    alert(this.name);      
                }      
            }      
                
            function Cat(name){    
                Animal.call(this, name);    
            }      
                
            var cat = new Cat("Black Cat");     
            cat.showName(); 
            /*Animal.call(this) 的意思就是使用 Animal对象代替this对象,
             * 那么 Cat中不就有Animal的所有属性和方法了吗,
             * Cat对象就能够直接调用Animal的方法以及属性了.*/
        </script>
    </body>
</html>

技术分享

js--继承

标签:

原文地址:http://www.cnblogs.com/flyings/p/5401272.html

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