我有转发器控件,它将显示 100000 条消息,我不想使用不同的页面向用户显示所有消息。相反,我想在用户向下滚动时加载,而不是在一个中加载所有消息时间。
例如:Facebook 时间线。
谢谢
编辑:我尝试了什么:
<script type="text/javascript">
$(document).ready(function e() {
$(window).scroll(function () {
if ($(window).scrollTop() == $(document).height() - $(window).height()) {
GetRecords();
}
});
function GetRecords() {
$("#loader").show();
$.ajax({
type: "POST",
url: "Demo.aspx/GetList",
data: {},
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSuccess,
failure: function (response) {
alert("Failure");
},
error: function (response) {
alert("Error");
}
});
}
function OnSuccess(response) {
$.map(response.d, function (item) {
$('#division').append("<div style='line-height:25px;'>" + item + "</div>");
});
$("#loader").hide();
}
});
</script>
后面的代码
public partial class Demo : System.Web.UI.Page
{
static List<string> list = new List<string>();
static int n=0;
protected void Page_Load(object sender, EventArgs e)
{
n = 0;
}
public Demo()
{
for (int i = 1; i <= 1000; i++)
{
list.Add("List Item : " + i);
}
}
[WebMethod]
public static List<string> GetList()
{
var fiftyItems = list.Skip(n).Take(50);
n = n + 50;
return fiftyItems.ToList();
}
}
但我想使用更复杂的控制,就像你在 facebook、评论、图片等中看到的那样。