html:
<h3>原始陣列
h3>
<
div
id="show5"
>
div>
<
h3>原陣列的一部分
h3>
<
div
id="show6"
>
div>
<
h3>原陣列的剩下一部分
h3>
<
div
id="show7"
>
div>
jquery:
var animals = ['dog','cat','tiger','pig','bird'];
$('#show5').html(animals.join('
'));
//拆分陣列
animalsofpart = animals.splice(0, 3);
//一部分
$('#show6').html(animalsofpart.join('
'));
//另一部分剩餘在原陣列中
$('#show7').html(animals.join('
'));
顯示結果:
原始陣列dogcat
tiger
pigbird
原陣列的一部分
dogcat
tiger
原陣列的剩下一部分
pigbird
知識點:
1,splice(0,3)表示從索引0開始,從原陣列裡刪除3個元素。從原來的陣列中提取並返回這兩個引數所定義範圍內的陣列元素,並儲存到另外乙個陣列裡。總之,刪除並返回陣列中的一部分(由splice的兩個引數所定義),剩餘部分留在原陣列中。
data analysis 陣列拆分
陣列的拆分 hsplit拿刀切菜,刀刃豎著往下切。每一次下刀,刀是在橫向移動後切下去。split arr,切成幾分,axis 1 vsplit拿刀片魚片,刀刃橫著往右邊切。每一次下刀,刀是在縱向移動後切下去。split arr,片成幾層,axis 0 import numpy as np arr n...
LeetCode 陣列拆分I
給定長度為 2n 的陣列,你的任務是將這些數分成 n 對,例如 a1,b1 a2,b2 an,bn 使得從1 到 n 的 min ai,bi 總和最大。示例 1 輸入 1,4,3,2 輸出 4 解釋 n 等於 2,最大總和為 4 min 1,2 min 3,4 n 是正整數,範圍在 1,10000 ...
陣列合併,拆分
有這麼兩個陣列 let metrodates 2008 01 2008 02 2008 03 let figures 0,0.555,0.293 想要這樣的結果 let result let result for let index in metrodates 此方案為最原始方法,簡單 let re...