这个函数jquery,当用户滚动页面时滚动一个div(使用名为“搜索”的css)。
$(window).scroll(function(){
$.each($('.Search'),function(){
var windowpos = $(window).scrollTop();
var finaldestination = windowpos+90;
$(this).stop().animate({'top':finaldestination},300);
});
});
此函数 jquery 在 Internet Explorer 9 中不起作用。我尝试做一个包含属性 position:fixed 的 css,但这在 Internet Explorer 9 中不起作用。有一个解决方案允许我在用户滚动 div在 Internet Explorer 中滚动页面?我为基本的英语道歉