how to delete records from database with an Ajax

前端 未结 2 1058
一整个雨季
一整个雨季 2021-01-25 00:59

I am using php,mysql and ajax to delete record from a table. The problem is that the in MySQL_query it not getting the id it shows \"id= undefined\", i tried to pass the id to t

2条回答
  •  有刺的猬
    2021-01-25 01:17

    var rowObj = $(this);    
    $.ajax({
                type: "POST",
                url: "suppliernetwork/delete.php",
                data: "rowid="+arr[1]+"&supplier="+supplier,
                success: function(data){
                     $('.ajax').html($('.ajax input').val());
                     $('.ajax').removeClass('ajax');
                      $(rowObj).parents("tr:first").hide();
                }});
    

    this should hide your complete row.

提交回复
热议问题