摘要: 1 数组合并 1.1 concat 方法 1.2 循环遍历 1.3 apply 合并数组arr1和数组arr2,使用Array.prototype.push.apply(arr1,arr2) or arr1.push.apply(arr1,arr2); 2 对象合并 2.1 $.extend() 2 阅读全文
posted @ 2017-02-19 18:08 龙骑士baby 阅读(148721) 评论(2) 推荐(3) 编辑
摘要: 1、方法概念 Function.prototype.call(); Function.prototype.apply(); 语法:fun1.call(fun2,arg1,arg2,arg3,...); fun1.call(fun2,[arg1,arg2,arg3,...]); 说明:改变fun1的t 阅读全文
posted @ 2017-02-19 17:47 龙骑士baby 阅读(512) 评论(0) 推荐(0) 编辑