搜尋

首頁  >  問答  >  主體

合併同一行中的兩個數組 JQUERY

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

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

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

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粉610028841P粉610028841230 天前400

全部回覆(1)我來回復

  • P粉044526217

    P粉0445262172024-04-04 10:35:25

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

    這也有效,

    var merge = [];
    for(var i = 0; i < ar1.length; i++){
      let obj = {id: ar1[i]['id'], quantity: ar2[i]['quantity']};
      merge.push(obj);
    }

    回覆
    0
  • 取消回覆