<tr onclick="removeAllDescendant(this)" parentid="@item.parentId" id="@item.id">
<td>
Use: <input type="checkbox" value="@item.iaId" />
Qty: <input type="text" class="width_100" />
</td>
<td>@item.location</td>
<td>@item.qty @item.uom</td>
<td>@item.createDt</td>
<td> </td>
<td> </td>
</tr>
これらのテーブル行を動的に作成しました。すべての行には親 ID と ID があります。ユーザーが行をクリックすると、すべての子孫行が折りたたまれます。
これがJavaScriptコードです-
function removeAllDescendant(row)
{
var id = $(row).attr("id");
removeRows(row, id);
}
function removeRows(row, id) {
var tr = $(row).nextAll('tr [parentid=' + id + ']');
if (tr.length > 0) {
for (i = 0; i < tr.length; i++) {
id = $(tr[i]).attr("id");
alert(id);
removeRows(tr[i], id);
}
}
$(tr).remove();
}
この再帰関数にバグはありますか? 3 つ以上のレベルがある場合、何らかの理由でこれが機能しません。