我有一個問題,無法合併同一行中的兩個數組,我現在有兩個數組,然後我想合併它們,因為它們具有相同的長度
這是我的兩個數組,看起來像
我想要透過組合這樣的輸出,但這就是我嘗試過的
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);
有誰知道如何解決我的問題嗎?提前致謝
因此您得到了錯誤的值, const merge= $('input[class=namecheckbox]')... 因為ar2 從該選擇中取得數據,$('.quantity_input')...
這也有效,