我正在使用此代码但在Internet Explorer中导致页面滚动后面的标题操作非常紧张。有谁知道可能会出现什么问题?
var name = "#header";
var menuYloc = 'null';
menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")))
$(window).scroll(function () {
var offset = menuYloc+$(window).scrollTop()+"px";
alert(offset);
$(name).animate({'top':offset},500);
});
答案 0 :(得分:0)
我认为您正在尝试滚动#header
以及滚动条。它可以通过简单的css实现。
#header
{
position:fixed;
}