我想在點擊頁碼時添加活動類,但是類在Ajax調用加載頁面時消失。在AJAX分頁問題中添加類「活動」
我嘗試過很多辦法來解決這個問題,但我不能,因爲
我怎樣才能解決這個問題?
function loadData(page)
{
$('.loading-info').show();
if (typeof page === 'undefined') {
page = ''
} else{
page = '&page='+page
}
$.ajax
({
type: "POST",
url: "../inc/ajax/ajax_view/user_assgined_view_hi.php",
data: "page="+page,
success: function(msg)
{
$("#results").html(msg);
$('.loading-info').hide();
}
});
}
$(document).on('click','.paging',function(e){
var page = ($(this).attr("id"));
loadData(page);
if ($(this).hasClass('active')) {
$(this).removeClass('active');
} else {
$(this).addClass('active');
}
});
你應該顯示你的html以及 – Bharat