我可以使用ajax重新加载div内容但无法对表内容进行排序。使用ajax重新加载div后,sorttable.js
无效。
我浪费了很多时间为此寻找解决方案。任何人都可以建议我如何重新加载div内容并对表进行排序。
xmlHttp.onreadystatechange = function(){
if(xmlHttp.readyState==4){
document.getElementById('displayarea').innerHTML = xmlHttp.responseText;
setTimeout('AutoRefreshValid()',75*1000); // JavaScript function calls AutoRefresh() every 75 seconds
}
}
xmlHttp.open("GET","RPT_STATUS_AJAX_DIV_REAL_ADMIN.jsp?order=<%=strOrder%>&OrderBy=<%=strOrderBy%>",true);
xmlHttp.send(null);
答案 0 :(得分:0)
当您的ajax呼叫完成时,请回想一下您的可排序功能。下面给出了一个简单的原型。
$.ajax({
url: 'your_url',
success:function(resp) {
// put content in div
$('element').sortable();
}
});