gpt4 book ai didi

javascript - 如何更新jquery数据表中的选定行

转载 作者:行者123 更新时间:2023-12-01 02:27:49 25 4
gpt4 key购买 nike

您能告诉我如何更新 jquery 数据表中选定的行吗?

在下面的代码中,我尝试设置一个单元格。看起来它已设置但未反射(reflect)在表中。

var datatable = $('#table').DataTable();
datatable.row('.selected').cell(':eq(1)').data("1234");
alert(datatable.row('.selected').cell(':eq(1)').data());

这里可以提醒更改的值,但相同的值没有反射(reflect)在数据表 UI 中。你能帮我吗?

最佳答案

Official documentation

draw() Since: DataTables 1.10 Redraw the table.

Description When you perform an action such as adding or deleting a row, changing the sorting, filtering or paging characteristics of the table you'll want DataTables to update the display to reflect these changes. This function is provided for that purpose.

您的代码是正确的,但数据表不会自动应用更改,只需调用draw()函数即可。

datatable.row('.selected').cell(':eq(1)').data('123').draw();

关于javascript - 如何更新jquery数据表中的选定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38550703/

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