2013-01-22 43 views

回答

2

試試這個:

$("#box2 h2").click(function() { 
    var $this = $(this); 
    $('html, body').animate({ 
     scrollTop: $this.offset().top 
    }, 1000); 

    return false; 

}); 

工作演示:https://tinker.io/8e585/16

+0

哇!這很好用。非常感謝花時間幫助並給出了這樣一個準確的答案。 – michaelmcgurk