这段代码在WIN7下正常,在XP下为啥不正常了呢?急。在线等。
soamu 2011-08-07 08:24:36 function tools() {
var top = $(document).scrollTop();
if (($.browser.msie == true) && ($.browser.version == 6.0)) {
if (top > 168) $("#cateorderForm").css({ position: "absolute", top: top - 168 });
} else {
if (top > 168) $("#cateorderForm").css({ position: "fixed", top: "-" & top + "px" });
}
if (top <= 168) $("#cateorderForm").css({ position: "static", top: 0 });
}
$(function () {
window.onscroll = tools;
window.onresize = tools;
});
<div id="cateorderForm" style="width: 320px;background:#ffe90c;">
测试
</div>