获取layui数据表格中复选框已选中的数据

时间:2024-03-13 12:18:34

获取layui数据表格中复选框已选中的数据获取layui数据表格中复选框已选中的数据

$('#add_sends').click(function () {
    var checkStatus = table.checkStatus('te');
    var ids = [];
    $(checkStatus.data).each(function (i, o) {//o即为表格中一行的数据
        ids.push(o.student_id);
    });
    if (ids.length < 1) {
        layer.msg('无选中项');
        return false;
    }
    ids = ids.join(",");
    layer.confirm('您确定要分发该课程吗?', function (index) {
        $.get("{:url('add_sends')}", {ids: ids, courseId: "{$courseId}"}, function (res) {
            if (res.code == 1) {
                layer.msg(res.msg, {time: 1000, icon: 1});
                tableIn.reload();
            } else {
                layer.msg(res.msg, {time: 1000, icon: 2});
            }
        });
        layer.close(index);
    });
});