$(
window).
scroll(
function () {
if (
$(
window).
scrollTop() ==
$(
document).
height() -
$(
window).
height()) {
//页面到底部了,你可以放一段ajax
}
})