gpt4 book ai didi

javascript - 遍历 div 标签内的所有复选框

转载 作者:数据小太阳 更新时间:2023-10-29 05:49:00 28 4
gpt4 key购买 nike

我需要循环遍历 ID 为 #abc123 的 div 标签内的所有复选框

我该怎么做?

$("#abc123").foreach( ???? )

更新我的 html 行看起来像:

<tr>
<td><input .../> </td>
<td>234</td>

</tr>

我需要添加 <td> 的值进入复选框的 ID。

我会得到父级,然后以某种方式成为它的祖先吗?

最佳答案

$("#abc123 input[type=checkbox]").each(function()
{

});

更新:

好的,让我看看我是否弄清楚了。鉴于:

<tr> 
<td><input .../> </td>
<td>234</td>
</tr>

你希望结果是(有效地)

<tr> 
<td><input id="abc234" .../> </td>
<td>234</td>
</tr>

$("td input[type=checkbox]").each(function()
{
var id = $(this).next("td").text();
$(this).attr("id", "abc"+ id);
});

关于javascript - 遍历 div 标签内的所有复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3532640/

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