gpt4 book ai didi

javascript - 使用 jQuery 遍历表格行中的所有单元格

转载 作者:行者123 更新时间:2023-11-30 05:34:11 25 4
gpt4 key购买 nike

使用 jQuery 实现此目的的最佳方法是什么,我试图在单击行时更改每个单元格的文本,但首先我无法访问单元格文本 (str 为空):

$("tr").bind("click", function() {
$cells = $(this).children();
$cells.each(function(index, cell) {
var str = $(cell).val();
});
});

最佳答案

td 没有值。使用 .text() 代替:

$("tr").bind("click", function() {
$cells = $(this).children();
$cells.each(function(cell) {
var str = cell.text();
});
});

关于javascript - 使用 jQuery 遍历表格行中的所有单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24999301/

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