gpt4 book ai didi

javascript - 如何使用 JavaScript 在另一个表中创建一个表?

转载 作者:行者123 更新时间:2023-12-02 23:39:57 28 4
gpt4 key购买 nike

我正在使用 JavaScript 动态创建一个表。我有一个我想要的最小例子。下面是要生成的 HTML:

    <table id='mainTable'>
<tr>
<td> Row 1 Cell 1 </td>
</tr>
<tr>
<td>
<table>
<tr>
<td> ... </td>
</tr>
</table>
</td>
</tr>
</table>

我通过 var table1 = document.getElementById("mainTable"); 获取主表,然后使用 JavaScript insertRow(0) 添加行和单元格>插入单元格(0)。我只想知道如何在 td 单元格内添加新表格。

最佳答案

// create new table
const newTable = document.createElement('table')

// target cell, this is selecting every td inside your mainTable
const target = document.querySelectorAll('#mainTable td')

// add new Table to first cell (if you want to add to specific cell you can add a class to it and the target it like that) or change the number in brackets:
target[0].appendChild(newTable)

关于javascript - 如何使用 JavaScript 在另一个表中创建一个表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56126385/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com