码迷,mamicode.com
首页 > Web开发 > 详细

jQuery.merge()

时间:2014-12-04 11:40:13      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:des   http   io   ar   sp   strong   on   div   bs   

今天学习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()

标签:des   http   io   ar   sp   strong   on   div   bs   

原文地址:http://www.cnblogs.com/wjly/p/4142215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!