gpt4 book ai didi

javascript - 如何更改表中某一列的内容?

转载 作者:行者123 更新时间:2023-11-28 04:20:00 25 4
gpt4 key购买 nike

我想更改此表上“开始日期”列的内部文本。

代码如下:

<tr id="currentRow">
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>

我尝试了下面的代码,但没有成功。

document.getElementById("currentRow").td[4] = "this is a text";

我怎样才能实现它?

最佳答案

<table>
<tr id="currentRow">
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</table>
<script>
document.getElementById("currentRow").children[4].innerHTML = "this is a text";
</script>

元素中没有td,而是一个数组。

关于javascript - 如何更改表中某一列的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45524460/

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