首页 > 代码库 > jQuery.merge()
jQuery.merge()
今天学习seajs,遇到return $.merge([‘module1‘], $.merge(m2.run(), m3.run()));不明白啥意思,上网查了一下明白了,记录一下
jQuery.merge( first, second ) 返回: Array
描述: 合并两个数组内容到第一个数组。
version added: 1.0jQuery.merge( first, second )
first第一个用来合并的数组,元素是第二数组加进来的。
second第二个数组合并到第一,保持不变。
Examples:
Example: Merges two arrays, altering the first argument.
$.merge( [0,1,2], [2,3,4] )
Result:
[0,1,2,2,3,4]
Example: Merges two arrays, altering the first argument.
$.merge( [3,2,1], [4,3,2] )
Result:
[3,2,1,4,3,2]
Example: Merges two arrays, but uses a copy, so the original isn‘t altered.
var first = [‘a‘,‘b‘,‘c‘];var second = [‘d‘,‘e‘,‘f‘];$.merge( $.merge([],first), second);
Result:
["a","b","c","d","e","f"]
jQuery.merge()
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。