我尝试在 html 表上实现无限滚动,或者如果需要,可以实现“滚动加载”。数据存储在数据库中,我使用后面的代码访问它。
我从 msdn 上的一个示例中实现了它,如下所示:
JS
$(document).ready(function () {
function lastRowFunc() {
$('#divDataLoader').html('<img src="images/ajax-Loader.gif">');
//send a query to server side to present new content
$.ajax({
type: "POST",
url: "updates.aspx/GetRows",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if (data != "") {
$('.divLoadedData:last').before(data.d);
}
$('#divDataLoader').empty();
}
})
};
//When scroll down, the scroller is at the bottom with the function below and fire the lastRowFunc function
$(window).scroll(function () {
if ($(window).scrollTop() == $(document).height() - $(window).height()) {
lastRowFunc();
}
});
// Call to fill the first items
lastRowFunc();
});
后面的代码并不那么有趣,它只是以这种格式(每行一个)从数据库返回数据(每次 20 行):
<tr><td>Cell 1 data</td><td>Cell 2 data</td><td>Cell 3 data</td></tr>
ASPX
<table>
<thead>
<tr><th>Header 1</th><th>Header 2</th><th>Header 3</th></tr>
</thead>
<tbody>
<div class="divLoadedData">
</div>
</tbody>
</table>
<div id="divDataLoader">
</div>
问题是,当数据被加载并插入页面时(即使在第一次加载时),表头会在数据之后。我确实看到了我加载的所有行,但表格标题位于页面底部(在我加载的 20 行之后)。我尝试了一些变化来插入加载的数据:
$('.divLoadedData:last').before(data.d);
或者
$('.divLoadedData:last').append(data.d);
或者
$('.divLoadedData:last').after(data.d);
但他们都没有工作。很高兴听到有关如何使用 html 表正确实现它并使其工作的任何建议。