-1
在我的Jquery腳本中,如果表格長於瀏覽器窗口,我將刪除第一行並將其添加到表格底部的無限循環中。 '#usertable'是我的表的ID。除此之外,它是一個普通的HTML表:Jquery:表格的無限滾動
("<table id="usertable"><tr><td>...</td><td>...</td></tr></table>
$(function() {
function appendFirstRow() {
$('#usertable').append($('#usertable tr:first'));
setTimeout(function() {
appendFirstRow();
}, 1500);
}
function checkScrollBar() {
var hContent = $('#usertable').height();
var hWindow = $(window).height();
if(hContent > hWindow) {
return true;
}
return false;
}
if (checkScrollBar()) {
$("html, body").animate({ scrollTop: $(document).height() }, 1000);
appendFirstRow();
}
});
我想這所以它看起來像的頁面是不斷通過無限滾動頁面發生一點點順暢。我怎樣才能實現這個?
感謝您的回答,但看起來並不真實。該頁面正在滾動,這很好,但首先它向下滾動並加載新元素。所以滾動停止300毫秒。 –
爲什麼總是在同一時間追加兩個元素? –