이번에는 스크롤바가 하단으로 슬라이드될 때 자동으로 더 많은 콘텐츠를 로드하는 방법을 알려드리겠습니다. 스크롤바가 하단으로 슬라이드될 때 알 수 있는 주의사항은 무엇인지 함께 살펴보겠습니다.
이 문서의 예에서는 아래쪽으로 스크롤할 때 jQuery가 자동으로 더 많은 항목을 로드하는 방법을 설명합니다. 참고를 위해 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다. AJAX는 여기에서 끝까지 스크롤하여 데이터를 로드하는 기능을 구현하는 데 사용됩니다.<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <script src="js/jquery.min.js"></script> <script type="text/javascript"> $(function () { AddSth(); }); $(function () { $(".main").unbind("scroll").bind("scroll", function (e) { var sum = this.scrollHeight; if (sum <= $(this).scrollTop() + $(this).height()) { AddSth(); } }); }); function AddSth() { $.ajax({ type: 'POST', url: "index.aspx/ReturnSth", dataType: "json", contentType: "application/json; charset=utf-8", //data: "", success: function (data) { json = $.parseJSON(data.d); for (var i in json) { var tbBody = "<ul><li>" + json[i].sth + "</li></ul>"; $(".main").append(tbBody); } $(".main").append("<hr />"); } }); } </script> </head> <body> <form id="form1" runat="server"> <p>下拉加载更多</p><br /> <p class="main" style="border: 1px solid red; height: 700px; overflow: auto;"></p> </form> </body> </html>
jquery를 사용하여 스타일이 지정된 HTML 태그를 추가하는 방법
jquery를 사용하여 동적으로 생성된 태그에 이벤트를 바인딩하는 방법
어떻게 jQuery 정보 레이블 하위 요소의 값을 가져옵니다
위 내용은 스크롤 막대가 아래쪽으로 슬라이드될 때 자동으로 더 많은 콘텐츠를 로드하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!