// 滾動到底部,向下的箭頭消失        var $down = $('.down');        var $window = $(window);        var $document = $(document);        $window.scroll(function(){            if ($document.scrollTop() + $window.height() >= $document.height()) {                $down.hide();            } else {                $down.show();            }        });
新聞熱點
疑難解答