如何将选中的复选框行数据添加到jquery datatable中的下一页

时间:2016-12-13 14:49:00

标签: javascript php jquery datatables

我是jQuery DataTables的新手。目前我正在对DataTable进行插入更新和删除操作。当我点击任何复选框,然后如果我点击更新按钮,我应该移动到下一个PHP页面(update.php),在该页面上我还应该获得相应字段中的所有数据。有人知道怎么做吗?

这是我的代码:

<script type="text/javascript" language="javascript" class="init">
    $(document).ready(function() {
        var table= $('#employee_data').dataTable();
        $("#update").click(function() {
            var count = $("input[type=checkbox]:checked").length;
            if (count < 1) {
                alert('please select a check box');
            } else {
                //do something
            }
        });
    });
</script>
<?php
if (isset($_GET['update'])) {
    $box = $_GET['num'];
    $count = count($box);
    if ($count == 0){
        header('Location:table.php');
    }elseif($count == 1){
        foreach($_GET['num'] as $id) {
            header("Location:update.php?id=".$id);
        }
    }
}
?>

0 个答案:

没有答案