Thủ thuật đồ họaXem thêm

Thủ thuật mạngXem thêm

Thủ thuật máy tínhXem thêm

Thủ thuật OfficeXem thêm

jQuery(document).ready(function ($) { let page = 1; // Trang hiện tại const loadMoreBtn = $('#load-more'); const postContainer = $('#post-container'); loadMoreBtn.on('click', function () { const ajaxUrl = loadMoreBtn.data('url'); $.ajax({ url: ajaxUrl, type: 'POST', data: { action: 'load_more_posts', page: page, }, beforeSend: function () { loadMoreBtn.text('Đang tải...'); }, success: function (response) { if (response === 'no_more_posts') { loadMoreBtn.text('Hết bài viết'); loadMoreBtn.prop('disabled', true); } else { page++; postContainer.append(response); loadMoreBtn.text('Tải thêm'); } }, error: function () { loadMoreBtn.text('Lỗi! Thử lại'); }, }); }); });