网站使用的是ci框架,想弄一个点击加载更多的信息流功能。用 js-ajax-控制器-模型 的形式实现。只需要加载1次就行了,默认是显示limit0,10条,点击加载再加载10条limit10,10。
这是别人帮我写的评论加载。
能不能改成文章加载
GetComments(1);
function GetComments(page)
{
$("#c-con .pages").remove();
var topic_id=971267;
$.ajax({
url:'index.php?topic/gettopiccomments',
data:{
'tid':topic_id,
'page':page
},
type : 'POST',
dataType : 'text',
success : function(result)
{
$('#c-con').append(result);
},
error : function(XMLHttpRequest, textStatus, errorThrown)
{
alert(textStatus);
}
});
}