gpt4 book ai didi

jquery - append 到表时无法读取 null 的属性 'childNodes'

转载 作者:行者123 更新时间:2023-11-30 23:55:40 24 4
gpt4 key购买 nike

我想这将是我得到的一个非常明显的答案,但我自己真的找不到。

这是我的表格(我省去了所有的 tds)

<table id="COA_Table">
<thead>
<tr>some th</tr>
</thead>
<tbody>
<tr>some TD</tr>
</tbody>
</table>

这是我的 jQuery 代码:

$(document).ready(function () {
console.log("ready!");

$('#COA_Table > tbody:last').append('<tr><td><input type=\"checkbox\"></td><td></td>New account<td></td><td></td></tr>');
})

最后,我得到的错误代码:

Uncaught TypeError: Cannot read property 'childNodes' of null

这让我发疯

最佳答案

请注意,您的结构中有错误

<td></td>New account<td></td>

此文本未放置在任何地方,可能会导致完整代码中出现错误。

应该是这样

<td></td><td>New account</td>

Demo With These Edits

关于jquery - append 到表时无法读取 null 的属性 'childNodes',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17305240/

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