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.