87,997
社区成员




//无限向下滚动
$(function () {
var gif = $("#weibolist_load");
$("#div_weibolist").bind("scroll", function () {
if (this.scrollTop + this.clientHeight >= this.scrollHeight) {
gif.show();
GetWeibo(1);
gif.hide();
}
});
});