function _scrollHandler(){ var nScrollTop = jContent.scrollTop(), nMaxHeight = jContentBody.outerHeight(true), nScreenHeight = jContent.height(), nNext = nScrollTop + nScreenHeight; if(nNext >= nMaxHeight){ nNext = 0; } // 頁面滾屏操作。 jContent.animate({ scrollTop: nNext }, 滾動時間間隔:自己設定); }