1. 程式人生 > >jquery實現載入更多

jquery實現載入更多

<pre name="code" class="javascript">很簡單的程式碼,下面直接是簡單的應用例子:

$(window).scroll(function () {
        var scrollTop = $(this).scrollTop();
        var scrollHeight = $(document).height();
        var windowHeight = $(this).height();
        if (scrollTop + windowHeight == scrollHeight) {
$("ul").append("<li>new li</li>");
}
})