复选框仅适用于 jQuery 数据表中的当前分页页面 [英] Checkboxes will only work on current pagination page in jQuery datatables

查看:37
本文介绍了复选框仅适用于 jQuery 数据表中的当前分页页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 jquery 数据表列出我的内容,其中有复选框选择和选定的内容发布数据,但在提交的表单中仅发送当前页面数据.

I am using jquery data table for listing my content which have checkbox selection and selected content post the data but in submitted form only current page data sent.

我的数据表代码是:

$('#select').dataTable( {
        "order": [[ 2, "desc" ]],
        "lengthMenu": [[50, -1], [50, "All"]],
        "columnDefs": [
                { orderable: false, targets: [0, 1, 3, 5] },
                { "width": "20px", "targets": [0, 1] },
                { "width": "80px", "targets": [5] }
        ],

});

当我点击提交时,它只提交当前页面值的复选框数组.

When I click on submit, it only submit the array of checkboxes for the current page values.

我已经提到了这个链接 带有选中复选框的分页.复选框仅适用于当前分页页面.jQuery 数据表,但那里提供的带有链接和链接的解决方案不起作用.

I have referred this link already Pagination with selected check boxes. Checkboxes will only work on current pagination page. jQuery datatables but solution provided overthere with link and link is not working.

推荐答案

您可以使用以下代码获取所有选中的复选框值,这可能对您有所帮助

you can get all the selected check box values using following code this might be helpful for you

var myArray = [];
var id = "";
var oTable = $("#example").dataTable();
$(".class1:checked", oTable.fnGetNodes()).each(function() {
    if (id != "") {
        id = id + "," + $(this).val();
    } else {
        id = $(this).val();
    }
});

这篇关于复选框仅适用于 jQuery 数据表中的当前分页页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆