Jquery provides a simple example of unlimited loading when a scroll bar is pulled down.

Source: Internet
Author: User

Jquery provides a simple example of unlimited loading when a scroll bar is pulled down.

Ideas:

By capturing the browser scroll bar drop-down event, the js method for Asynchronously loading data is triggered to dynamically add data.

Script:

Var lastId = 0; // the id of the last record during each loading, which is related to your sorting method. Var isloading = false; $ (window ). bind ("scroll", function () {if ($ (document ). scrollTop () + $ (window ). height ()> $ (document ). height ()-10 &&! Isloading) {isloading = true; getMore () ;}}); function getMore () {var url = "ajaxdata. aspx "? LastId = "+ lastId +" & type = "+ other parameters $. getJSON (url, function (data) {var html = "";...... $ (html ). insertAfter ($ (". elem "). last (); isloading = false ;}}

The simple example of the above jquery Implementation of scroll bar pull-down is all the content shared by xiaobian. I hope to give you a reference, and I hope you can support the help house a lot.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.