为了账号安全,请及时绑定邮箱和手机立即绑定

有没有办法在javascript中将表更改为多维数组?

有没有办法在javascript中将表更改为多维数组?

泛舟湖上清波郎朗 2023-07-20 10:24:09
我制作了一个具有行和列属性的表格,代码如下:<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>但我不知道如何将其转换为多维数组。我想用这种模式访问我的表格的“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]谁能给我用这种模式将表转换为数组的代码?
查看完整描述

1 回答

?
慕容708150

TA贡献1831条经验 获得超4个赞

function tableToArray(table) {

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

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

  })

}

你可以使用它传递你的表作为参数


const table = document.querySelector('table')

const array = tableToArray(table)


查看完整回答
反对 回复 2023-07-20
  • 1 回答
  • 0 关注
  • 102 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信