var uf = $('.utilsFloat');
var topValue = $('.article .header').offset().top;
uf.css({
top : topValue,
marginLeft : -137,
position: 'absolute'
});
$(document).scroll(function() {
var fixedShareTools = $(document).scrollTop() >= topValue;
if (fixedShareTools) {
uf.css(
{
top : 10 + "px",
"position" : "fixed"
}
);
}
else {
uf.css(
{
"position" : "absolute",
top : topValue + "px"
}
)
}});
上面的代码试图在您滚动到页面上的标题时将项目的位置属性设置为“固定”。它适用于除 IE8 和 7 之外的所有应用。IE7/8 中的 jQuery .css() 方法是否存在问题?
这个问题有解决方案吗?