js学习总结
2021-07-09 18:05
标签:long 参数 call new bind 对象 cti 一个 console This指向改变方法: 1.new对象 2.通过bind( )绑定来改变this指向 3.通过call调用函数,并改变this指向,其中第一个参数为对象后面依次为值 function fn(name){ this.name=name; this.fn1=function{ console.long(this.name) } } var obj={}; fn.call(obj."zhangsan") 4.通过apply调用函数,并改变this指向,其中第一个参数为对象后面依次为值第二个为数组 function fn(name){ this.name=name; this.age=age this.fn1=function{ console.long(this.name) } } var obj={}; fn.apply(obj.["zhangsan",20]) js学习总结 标签:long 参数 call new bind 对象 cti 一个 console 原文地址:http://www.cnblogs.com/liuqr/p/7091954.html