使用.jquery加载更多

时间:2018-08-28 09:45:12

标签: jquery ajax

我的代码主要功能是加载其余页面,但目前仅显示正在加载而不显示页面。

    $('#load_more').click(function()
    {
        if($('#id_codex').val() == '')
        {
            $(this).text('Loading...');
            $(this).attr('disabled', true);

            offset = $('tbody:first tr').length;

            $.ajax({
                type: 'POST',
                dataType: 'HTML',
                async: true,
                cache: false,
                url: app_path + '/wms/incoming/raw_index_ajax/' + offset,
                success: function(data) {
                    $('table tbody:first').append(data).trigger('footable_redraw');
                    $('#load_more').text('Load more...');
                    $('#load_more').attr('disabled', false);
                    bind_qtip();
                }
            });
            return false;
        }
        return true;
    });

});

  

这是jquery部分

0 个答案:

没有答案