jQuery - Animate 頁面平滑置頂功能。

$("#goTop").click(function () {
    $("html,body").animate({scrollTop: 0}, "1800");
    return false;
});