gpt4 book ai didi

javascript - 使用Javascript控制表格单元格的内部文本

转载 作者:行者123 更新时间:2023-12-01 02:47:24 25 4
gpt4 key购买 nike

我有如下 3 个表:

<table id="timbercamptable">
<tr>
<th>Production</th>
<th class="unitspertitle"></th>
<th class="unitspernexttile"></th>
</tr>
<tr>
<td>Base production</td>
<td class="currentunits"></td>
<td class="nextunits"></td>
</tr>
</table>

表的类和结构相同,但表 ID 不同。我希望使用 JavaScript 控制类的 innerText 。知道另一个表的 id 为 sulfurpittablegoldminetable,调用这些类的正确方法是什么。

例如,我想更改位于 timbercamptable 中的 currentunitsinnerText

最佳答案

您可以使用document.querySelector根据表格单元格的table idclass来查询表格。

document.querySelector("#timbercamptable .currentunits").textContent = "100.00";
<table id="timbercamptable">
<tr>
<th>Production</th>
<th class="unitspertitle"></th>
<th class="unitspernexttile"></th>
</tr>
<tr>
<td>Base production</td>
<td class="currentunits"></td>
<td class="nextunits"></td>
</tr>
</table>

关于javascript - 使用Javascript控制表格单元格的内部文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47173759/

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