現在、私はこれを使用しています:
$('#go-to-top').each(function(){
$(this).click(function(){
$('html').animate({ scrollTop: 0 }, 'slow'); return true;
});
});
これはChromeでは機能せず、Operaでは小さなちらつきが発生します.ブラウザはすぐに上にスクロールし、次に下に戻り、ゆっくりと上にスクロールし始めます。
これを行うより良い方法はありますか?