JQuery benim denetleyicisi doğru değeri geçen muyum?

0 Cevap php

Ben, jquery kullanarak bir masanın üzerinde bir silme yapıyorum

$('table#chkbox td a.delete').click(function()
    {
        if (confirm("Are you sure you want to delete this row?"))
        {
            var id = $(this).parent().attr('id');

            var parent = $(this).parent().parent();

            $.ajax(
            {
                   type: "POST",
                   url: "<?php echo base_url().'index.php/libraryController/librarydelete' ?>",
                   data: { 'id': id },
                   cache: false,

                   success: function()
                   {
                        parent.fadeOut('slow', function() {$(this).remove();});
                   }
             });                
        }
    });

Ben doğru id değerini alıyorum ama benim veri parametre benim denetleyicisi geçti almaz,

function librarydelete($id)
{
$del = $id;
echo $del; 
$this->librarymodel->deletebook_issue($id);
$this->session->set_flashdata('response','Deleted successfully');
redirect('libraryController/loadmagazinedetails');
}

Herhangi bir öneri ...

Ben hata alıyorum,

Missing argument 1 for libraryController::librarydelete() ve Undefined variable: id

0 Cevap