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

JS 继承的方式

时间:2017-08-06 18:15:47      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:zhang   this   class   script   title   ges   object   javascrip   logs   

JS 继承的方式

1.使用call的方式

技术分享

 

2. code如下

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<script type="text/javascript">
    //继承的第二种实现方式,call方法方式, Function对象中的方法
    function test(str, str2) {
        alert(this.name + ", " + str +  ", " + str2)
    }

    var object = new Object();
    object.name = "zhangsanfeng";
    //test.call相当于调用了test函数
    test.call(object,"ssy","hello"); //将object赋值给this
</script>
</body>
</html>

  

 

 

JS 继承的方式

标签:zhang   this   class   script   title   ges   object   javascrip   logs   

原文地址:http://www.cnblogs.com/linlf03/p/7295192.html

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