AJAX pagination with codeigniter and jquery

前端 未结 3 1162
天涯浪人
天涯浪人 2021-02-01 11:40

Can someone help me with a simple AJAX pagination in Codeigniter using JQuery? With the paginated list queryed from the database. I searched the web but all the exemples are ver

3条回答
  •  我在风中等你
    2021-02-01 11:58

    Apply Live click, if you are returning data from controller as follows:

    jQuery("#pagination a").live('click',function(e){
        e.preventDefault();
        jQuery.ajax({
        type: "POST",
        url: jQuery(this).attr("href"),
        success: function(res){
          jQuery('#multiple_selection_data').html(res);
        }
        });
        return false;
    });
    

提交回复
热议问题