文件1.php应输出:
<div id="content">
</div>
<script type="text/javascript">
$(document).ready(function() {
// when we scroll, check the position:
$(window).scroll(function()
{
// if at bottom, add new content:
if ($(window).scrollTop() == $(document).height() - $(window).height())
{
$.get("2.php",function(data) {
$("#content").append(data);
},'html');
}
});
});
</script>
Run Code Online (Sandbox Code Playgroud)
如果你想将迭代次数发送到2.php,你可以在一些隐藏的输入中记住它并将其作为参数发送到$ .get().
希望能帮助到你.
| 归档时间: |
|
| 查看次数: |
5247 次 |
| 最近记录: |