合併同一行中的兩個數組 JQUERY
P粉610028841
P粉610028841 2024-04-03 14:41:39
0
1
398

我有一個問題,無法合併同一行中的兩個數組,我現在有兩個數組,然後我想合併它們,因為它們具有相同的長度

這是我的兩個數組,看起來像

我想要透過組合這樣的輸出,但這就是我嘗試過的

const ar1 = $('input[class=namecheckbox]').map((i, el) => ({id: el.id.slice(2)})).get();
const ar2 = $('.quantity_input').map((i, el) => ({quantity: el.value})).get();

const merge= $('input[class=namecheckbox]').map((i, el) => ({id: el.id.slice(2),quantity: el.value})).get();

console.log(ar1);
console.log(ar2);
console.log(merge);

有誰知道如何解決我的問題嗎?提前致謝

P粉610028841
P粉610028841

全部回覆(1)
P粉044526217

因此您得到了錯誤的值, const merge= $('input[class=namecheckbox]')... 因為ar2 從該選擇中取得數據,$('.quantity_input')...

這也有效,

var merge = [];
for(var i = 0; i < ar1.length; i++){
  let obj = {id: ar1[i]['id'], quantity: ar2[i]['quantity']};
  merge.push(obj);
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板