JS 继承的方式

Posted work hard work smart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 继承的方式相关的知识,希望对你有一定的参考价值。

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 继承的方式的主要内容,如果未能解决你的问题,请参考以下文章

JS继承的实现方式

js实现继承的5种方式

js的5种继承方式——前端面试

JS实现继承的几种方式

JS继承的实现方式

js实现继承