を探る:jqueryのアニメーションscrollTopスプライト機能は、インターネットで動作していない私は、このコード使用しています
$('#goto_introduction_divcontent').click(function(){
var targetOffset = $('#introduction_div').offset().top;
$('html, body').animate({scrollTop:targetOffset}, 'slow');
if ($.browser.msie){
document.documentElement.scrollTop = targetOffset;
}
});
をしかし、これはInternet Explorerで動作していません。私のjsFiddleはhereです。
ブラウザの特定の問題と思われる場合は、ブラウザのバージョンを指定してください。 btw FF3.6とIE8で正常に動作しました。 –
はクロムとファイアボックスで動作しますが、IE7とIE9では動作しません。 –