gpt4 book ai didi

javascript - jquery 节点数组

转载 作者:行者123 更新时间:2023-11-28 19:04:29 26 4
gpt4 key购买 nike

我有一个包含 2 列的表格。一列带有复选框,另一列带有纯文本。我想生成一个包含检查状态和文本的对象数组。我可以用这个来进行 tr 和 tr 操作:

$('#divInfCambios .frozen-bdiv tr').each(function(i)
{ ... }

如何访问td[1]、检查状态并恢复td[2]的文本?

我得到了检查状态:

$(this).find('input[type="checkbox"]').prop('checked')

我现在需要如何访问节点 2 (td[1]) 并抓取文本。

最佳答案

//run through each row
$('#divInfCambios .frozen-bdiv tr').each(function (i, row) {

var getInputByName = $(this).find('input[name="selection"]');
if (getInputByName.is(':checked') ){

}
// assuming you layout of the elements
var tds = $(this).find('td');
var getTdText = tds.eq(1).text();

});

关于javascript - jquery 节点数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31965606/

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