頁面的下拉載入效果基於ajax載入資料

來源:互聯網
上載者:User

準備一個靜態html檔案,不用多說,head地區引入下jquery

<!DOCTYPE html><html><head><meta charset="utf-8"><title>下拉載入</title><script src="jquery.js"></script></head><body><div id="container">下拉載入<br/><!-- 複製上方文字,直到有捲軸出現為止,為了達到測試目的 --></div></body></html><script>//資料載入時期的gif載入圖,用於提示使用者資料正在載入!var loadDiv = '<div class="loading"><img src="loading.gif" width="100px" height="100px" ></div>';//監聽視窗的滑鼠滾輪事件$(window).scroll(function() {  //當滾輪滾動到文檔最末位,也就是拉到了最底下if( $(window).scrollTop() == $(document).height() - $(window).height() ) {    //避免多次滾輪觸發事件造成圖片的多次追加,加上此判斷    if($('#container .loading').length == 0) {        //將圖片插入到內部的內容最末位        $('#container').append(loadDiv);    }    //發送ajax請求擷取資料    $.ajax({        type: "POST",        url: "load.php",        success: function(data){          //載入成功,移除用於提示使用者的動態gif圖片          $('#container .loading').remove();          //追加後端返回的資料          $('#container').append(data);        }    });}});</script>


PHP代碼如下:

<?phpif(isset($_POST)) {    //為了避免gif圖因資料載入過快而破壞測試效果,指令碼延時5秒返回    sleep(5);    echo <<<STR        載入成功。<br/>STR;}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.