2014年1月24日 星期五

javascript scrollbar 到網頁底部後執行

var $terms = $(window),
   _height = $terms.height(),
   _scrollHeight = $(document).height(),
   _maxScrollHeight = _scrollHeight - _height - 20;
        var _least = 0; // 距離底部多少就可以, 0 表示得完全到底部

        // 當 #terms 中捲軸捲動時
        $(window).scroll(function () {
            var $this = $(this);
            // 如果高度已經達到指定的高度就啟用 $submit


            if (_maxScrollHeight - $this.scrollTop() <= _least) {
               
                alert("到底了");

            }
           
        });

標籤: ,

0 個意見:

張貼留言

訂閱 張貼留言 [Atom]

<< 首頁