首页 > 代码库 > JS 继承的方式

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>

  

 

 

<script type="text/javascript">// </script>

JS 继承的方式