この関数jqueryは、ユーザーがページをスクロールするときにdivをスクロールします(「検索」という名前のcssを使用)。
$(window).scroll(function(){
$.each($('.Search'),function(){
var windowpos = $(window).scrollTop();
var finaldestination = windowpos+90;
$(this).stop().animate({'top':finaldestination},300);
});
});
この関数jqueryはInternetExplorer9では機能しません。属性position:fixedを含むcssを実行しようとしましたが、InternetExplorer9では機能しません。ユーザーがdivをスクロールできるソリューションがあります。 Internet Explorerでページをスクロールしますか?基本的な英語をお詫びします