错误:我想从选中的复选框数据表Ajax和jequery获取一个值

时间:2019-05-24 17:08:55

标签: jquery checkbox datatables

我想获取选中的“ IG”值并通过Ajax发布。

  "select": {
     "style": "multi"
  },

"processing" : true,
"serverSide" : true,
"order" : [],

"ajax" : {
 url:"accfiltrage.php",
 type:"POST",

}

$('#customer_dataa tbody').on( 'click', 'tr', function () {
    $(this).toggleClass('selected');
} );
$('#button').click( function () {
  swal( table.rows('checkboxes.selected').data().length +' Commande selectioner login to continue ' ).then(

  function() {
        window.location.href = "login.php";
    })



} );

image for my code

0 个答案:

没有答案