gpt4 book ai didi

php - 使用数据表列出 select/selectall 行以通过脚本选择行,那么我如何设置/获取所选行的动态 ID

转载 作者:行者123 更新时间:2023-12-01 04:37:57 24 4
gpt4 key购买 nike

我正在使用数据表来列出并通过脚本使用数据表行选择功能..

我的代码片段:

<table id="conf_table">
</table>

全选/全选多行脚本:

<script>
let example = $('#conf_table').DataTable({
columnDefs: [{
orderable: false,
className: 'select-checkbox',
targets: 0
}],
select: {
style: 'multi',
selector: 'td:first-child'
},
order: [
[0, 'asc']
]
});
example.on("click", "th.select-checkbox", function() {
if ($("th.select-checkbox").hasClass("selected")) {
example.rows().deselect();
$("th.select-checkbox").removeClass("selected");
} else {
example.rows().select();
$("th.select-checkbox").addClass("selected");
}
}).on("select deselect", function() {
("Some selection or deselection going on")
if (example.rows({
selected: true
}).count() !== example.rows().count()) {
$("th.select-checkbox").removeClass("selected");
} else {
$("th.select-checkbox").addClass("selected");
}
});

</script>

当我检查所选行的复选框时,它显示的代码如下..

.....
<tr class="gradeX odd selected" role="row">
<td class="select-checkbox sorting_1">
::before
::after
</td>
</tr>
....

现在我如何使用 foreach 设置动态行 id 以及如何在 post 中获取它?

请建议我进行更改?

最佳答案

为每行设置动态 ID 的非常简单的方法:

var n=0;
$('tr').each(function() {
n++;
$(this).attr('id', n);
});

...这就是你的意思吗?另外,“将其放入帖子”是什么意思?需要澄清您想要实现的目标。

关于php - 使用数据表列出 select/selectall 行以通过脚本选择行,那么我如何设置/获取所选行的动态 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45816057/

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