第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

有沒(méi)有辦法在javascript中將表更改為多維數(shù)組?

有沒(méi)有辦法在javascript中將表更改為多維數(shù)組?

泛舟湖上清波郎朗 2023-07-20 10:24:09
我制作了一個(gè)具有行和列屬性的表格,代碼如下:<table border='2px' cellpadding='20px'>  <tr id='rowZero'>      <td id='zeroZero'>-</td>      <td id='zeroOne'>-</td>      <td id='zeroTwo'>-</td>      <td id='zeroThree'>-</td>      <td id='zeroFour'>-</td>``  </tr>  <tr id='rowOne'>       <td id='oneZero'>-</td>      <td id='oneOne'>-</td>      <td id='oneTwo'>-</td>      <td id='oneThree'>-</td>      <td id='oneFour'>-</td>  </tr>但我不知道如何將其轉(zhuǎn)換為多維數(shù)組。我想用這種模式訪(fǎng)問(wèn)我的表格的“innerText”:td id='zeroZero' on array index [0,0]td id='zeroOne' on array index [0,1]td id='zeroTwo' on array index [0,2]td id='zeroThree' on array index [0,3]td id='zeroFour' on array index [0,4]td id='oneZero' on array index [1,0]td id='oneOne' on array index [1,1]td id='oneTwo' on array index [1,2]td id='oneThree' on array index [1,3]td id='oneFour' on array index [1,4]誰(shuí)能給我用這種模式將表轉(zhuǎn)換為數(shù)組的代碼?
查看完整描述

1 回答

?
慕容708150

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超4個(gè)贊

function tableToArray(table) {

  return [...table.querySelectorAll('tr')].map(row => {

    return [...row.querySelectorAll('td')].map(cell => cell.textContent)

  })

}

你可以使用它傳遞你的表作為參數(shù)


const table = document.querySelector('table')

const array = tableToArray(table)


查看完整回答
反對(duì) 回復(fù) 2023-07-20
  • 1 回答
  • 0 關(guān)注
  • 137 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)