2
$('body a').click(function(e){
\t \t e.preventDefault();
\t \t var goTo = $(this).attr('href').replace('#','');
\t \t $("html, body").animate({
\t \t \t scrollTop:$('a[name="'+goTo+'"]').offset().top
\t \t },1100);
\t \t
\t \t window.location.hash = "#"+goTo;
\t \t
\t });
有我的JavaScript代碼,它工作正常,但如果我嘗試點擊鏈接我得到這個錯誤:
類型錯誤:$(。 ..)。offset(...)未定義
謝謝SOOOO了! – Paul