gpt4 book ai didi

javascript - 访问表格单元格内的 div 内容

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

I have a JSFiddle here .

我正在尝试访问带有“.item_description”类的 div 的文本内容,用于已选中复选框的表中的所有行,但我似乎无法获取它。复选框位于每个嵌套表中行。

我的 HTML 是:

<table id="table-tasks-list" class="table-hover">
<tbody>
<tr id="row-task-10572" class="task-modal-row">
<td >
<div class="task_description pull-left" style="padding:5px 0 0 5px;">Qui at dolore sit alias cum voluptate ad...</div>
<table class="pull-right" style="border:none;">
<tbody>
<tr>
<td style="width:80px;border:none;">2015-02-23</td>
<td class="hours" style="width:30px;border: none;">8.00</td>
<td class="row-icon tasks-check-box" style="border: none;">
<label class="checkbox-hold">
<input type="checkbox" name="bill-task" id="chk-10572" class="task-checkbox ion-fw" checked=""><span class="fake-input checkbox-icon ion-android-checkbox-outline-blank ion-fw" data-chk-id="10572"></span></label>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr id="row-task-10573" class="task-modal-row">
....

在我的 JS 中,我这样做:

$('table#table-tasks-list tbody tr td input.task-checkbox').each(function(i, check) {       
if ($(check).is(':checked')) {
console.log($(check).closest('table#table-tasks-list tbody tr').find('.task_description').text());
}
});

但我得到的结果是空的。我错过了什么?谢谢!

最佳答案

使用

$(check).closest(".task-modal-row").find(".task_description").text();

访问最近的.task_description的内容

关于javascript - 访问表格单元格内的 div 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41916698/

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