摘要: IE5之前没有apply和call的支持,下面的方法兼容版本IE function test(a,b){ var re = this.x+a+b console.log(re)} var f = test.bind({x:3},3);f(5) //11=3+3+5 参考链接: https://blo 阅读全文
posted @ 2017-03-06 15:15 小猪ab 阅读(1206) 评论(0) 推荐(0) 编辑