Jquery抖动即

时间:2011-08-16 13:56:07

标签: javascript jquery internet-explorer

我正在使用此代码但在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);  
});  

1 个答案:

答案 0 :(得分:0)

我认为您正在尝试滚动#header以及滚动条。它可以通过简单的css实现。

#header
{
   position:fixed;
}