gpt4 book ai didi

javascript - 数据表未发布所有选定的项目

转载 作者:行者123 更新时间:2023-12-03 11:04:17 24 4
gpt4 key购买 nike

enter image description here

当我尝试从一页发布所选值时,我有这个带有复选框数据表,没有问题。

但是当我检查第 1 页中的几个 复选框 和第 2 页中的几个复选框时,它仅发布当前页面(我当前正在查看的页面)中的值

在发布我用 jquery 检查的值之前,它正在计算所选行的正确数量。

 $(document).ready(function() {
var table = $('#example').DataTable();

$('#example tbody').on( 'click', 'tr', function () {
$(this).toggleClass('selected');
} );

$('#button').click( function () {
alert( table.rows('.selected').data().length +' row(s) selected' );
alert($(".messageCheckbox").is(":checked").val())
} );
} );

从数据库填充数据表

<td><input type="checkbox"  name ="multi[]" value="<?php echo $row['work_id']; ?>"></td>

enter image description here

PHP

$aDoor = $_POST['multi'];

if(empty($aDoor))
{
echo("You didn't select any Image.");
}
else
{
$N = count($aDoor);

for($i=0; $i < $N; $i++) {
// do stuff
} }

最佳答案

$(function(){
$('#button').click(function(){
var val = [];
$(':checkbox:checked').each(function(i){
val[i] = $(this).val();
});
alert(val.length);
});
});

关于javascript - 数据表未发布所有选定的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27936139/

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