스크롤 바 정보

3000 단어 스크롤 바
 $(window).scroll(function () {



        var wScrollTop = $(window).scrollTop();

        var offsetHeight = 10;

        var docHeight = $(document).height();

        var wHeight = $(window).height();



        //        console.log("wHeight:" + wHeight);

        //        console.log("offsetHeight:" + offsetHeight);

        //        console.log("docHeight:" + docHeight);

        //        console.log("tarHeight:" + tarHeight);



        if (wScrollTop >= docHeight - wHeight) {

            $.mobile.showPageLoadingMsg();



            gobalPage++;

            $.ajax({

                type: "POST",

                url: "http://localhost:58300/handle.aspx",

                data: "fnName=getContentData&author=haoxinqing&page=" + gobalPage,

                dataType: "jsonp",

                jsonpCallback: "hxqContent",

                success: function (msg) {



                    console.log(msg);

                    $.mobile.hidePageLoadingMsg();



                    //$.mobile.changePage($("#main"), "slide");

                    $("#contentList").append(msg.content);

                    $('#contentList').listview('refresh');

                }

            });



        }



        if (wHeight == 0) {

            //javatranster.getlastData();

            //console.log(666);

        }



    });

끝까지 굴러가서 싣는 것은 한눈에 알 수 있을 것이다. 안에 있는 몇 개의 변수의 뜻은.

좋은 웹페이지 즐겨찾기